Search

Search Results

Monday, February 2, 2009

For loop

// program for using "for"loop
#include(stdio.h)
void main()
{ int x;
x=1;
for(printf("God\n");x<=3;printf("Good\n"))
{ printf("%d\n",x);
x++;
}
}

0 comments:

Inline