#include<stdio.h>
int main()
{
int i;
for(i=1;i<=100;i++)
{
printf("%d\n",i);
}
return 0;
}
Output:-
1
2
3
4
5
.
.
.
.
.
100
2
3
4
5
.
.
.
.
.
100
#include<stdio.h> int main() { char c; printf("Enter a character to know whether it is vowel or not\n"); scanf("...
No comments:
Post a Comment