#include<stdio.h>
#include<conio.h>
main()
{
int n=1;
clrscr();
A:
if(n<=100)
{
printf("%d,",n);
n=n+2;
goto A;
}
getch();
}
#include<conio.h>
main()
{
int n=1;
clrscr();
A:
if(n<=100)
{
printf("%d,",n);
n=n+2;
goto A;
}
getch();
}
This website is for c programming tutorials online.By this website you can learn c programming online.There are many c programming topics and Other programs for practice.There are also some projects created in c programming.