Download Study material, Syllabus, Question Papers of DE, BE, ME, MBA, MCA, of Gujarat Technological University (GTU)
If you have study material, please share with us. Send mail on theminutestudy@gmail.com
Write a program to print first 10 numbers using while loop
#include<stdio.h> #include<conio.h> int main() { int no; no=1; while(no<=10) { printf("\n%d",no); no++; } }
No comments:
Post a Comment