Next: Basic C Programming Up: The C Program Previous: History of C

Exercises

  1. Enter, compile and run the following program:
  2.         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);
    
            }
  3. Write C a program to print your name and address on the screen.
  4. view solution

    drago@scri.fsu.edu
    Jan. 1997