COMPUTER WORLD
Judgment for COMPUTER problem / solving for COMPUTER problem
Showing posts with label
for loop
.
Show all posts
Showing posts with label
for loop
.
Show all posts
Wednesday, February 10, 2010
simple c program in for loop
#include
#include
int main()
{
int index;
for(index = 0 ; index < 10 ; index = index + 1)
printf("GUNA\n");
getch();
return 0;
}
/* Result of execution
GUNA
GUNA
GUNA
GUNA
GUNA
GUNA
GUNA
GUNA
GUNA
GUNA
*/
Older Posts
Home
Subscribe to:
Posts (Atom)