Search This Blog

Thursday, June 3, 2010

1-Function 01-4 void (Squares 1-10)

/* More Samples :-
http://www.helptoc.blogspot.com
mail - helptoc@gmail.com
*/

#include

void squares()
{
int a;
for (a=1;a<=10;a++)
printf("%d\n\n",a*a);
}
int main()
{
printf("Squres of 1 - 10 \n\n");
squares();
}

No comments:

Post a Comment