Next: Basic C Programming
Up: The C Program
Previous: History
of C
Exercises
- Enter, compile and run the following program:
main()
{ int i;
printf(`\t Number \t\t Square of Number\n\n');
for (i=0; i<=25;++i)
printf(`\t %d \t\t\t %d \n',i,i*i);
}
- Write C a program to print your name and address on the screen.
view solution
drago@scri.fsu.edu
Jan. 1997