Display "Hello World" 5 times By Nithin May 09, 2019 #include<stdio.h> int main() { for(int i = 1; i <= 5; i++) { printf("Hello World"); printf("\n"); // New Line for each iteration. } return 0; } Link : https://repl.it/@nithin_gudla/helloworld5times Share Get link Facebook X Pinterest Email Other Apps Share Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment