Which code are used 5 times run hello world | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 4

Which code are used 5 times run hello world

19th Dec 2018, 2:23 PM
BAHSAKI
BAHSAKI - avatar
1 Answer
+ 2
Maybe something like this (in C): #include <stdio.h> int main() { int i = 0; while (i < 5) { printf("Hello, World!\n"); i++; } return 0; }
19th Dec 2018, 2:43 PM
Paul
Paul - avatar