C-Programming
Tuesday, November 25, 2025
Write a C Program Print 1 To 100 Numbers using while Loop
#include<stdio.h>
main()
{
int i=1;
while(i<=100)
{
printf("%d\t",i);
++i;
}
}
Output
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment