Hello friends.Hope you have learn conditioner logic.Now you can make your own conditioner logic program.But today i will teach you a new function ad a new code.This is about loop.This is so interested coding.i hope every one will understand it.
Today we will learn how to write 1 to 10 by loop.So now see the code...
#include <stdio.h>
main()
{
int n=1;
while(n<10);
{
printf("%d\n",n);'
n++;
}
return 0;
}
Today we will learn how to write 1 to 10 by loop.So now see the code...
#include <stdio.h>
main()
{
int n=1;
while(n<10);
{
printf("%d\n",n);'
n++;
}
return 0;
}
No comments:
Post a Comment