#include<stdio.h>void main(){ int i=1; do{ printf("%d\n",i); i++; }while(i=100);}
Output Print Download Code
Output12345678910
0 Comments