#include<stdio.h> #include<conio.h> int main(){ for(int i=0;i<5;i++){ printf("Hello World"); } getch(); return 0; }
Comments 0