Skip to main content

Display "Hello World" 5 times

#include<stdio.h> int main() { for(int i = 1; i <= 5; i++) { printf("Hello World"); printf("\n"); // New Line for each iteration. } return 0; }





Comments