//printing 1-100 using while-loop #include<stdio.h> //main function void main(){ //initializing integer i int i=1; //while-loop to display till 100 while(i<=100){ printf("%d,",i); i++; } }
Subscribe to:
Post Comments (Atom)
All rights reserved to Uzzwal Dhali © 2009 -
No comments:
Post a Comment