C Program for loop: "Print 10 Times name using for loop" with output
#include <stdio.h>
int main() { int i; for (i = 0; i < 10; i++) { printf("John\n"); } return 0; }John
John
John
John
John
John
John
John
John
John
#include <stdio.h>
int main() { int i; for (i = 0; i < 10; i++) { printf("John\n"); } return 0; }
Comments
Post a Comment