#include<stdio.h>int main(){ int x=1; for(x=1; x<=10; x++) printf("\n%d",x); return 0;}
Output Print Download Code
Output 1 2 3 4 5 6 7 8 9 10
0 Comments