Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include<stdio.

h>
#define n 50
int main ()
{
int i;
for(i=0;i<=n;i++);
printf("%d",i);
return 0;
}

------(DO WHILE)-------

#include<stdio.h>
#include<stdlib.h>
#define n 100
int main()
{
int c=1;
do
{printf("%d\n",c);
c=c+1;
} while(c<=100);
return 0;
}

------(WHILE)---------
#include<stdio.h>
#include<stdlib.h>
#define n 100
int main()
{
int c=1;
while (c<100)
{
printf("%d\n",c);
c=c+1
};

return 0;
}

You might also like