fork download
  1. /* Sample Exercise 1
  2.  
  3.   Write a program to generate and display a table of
  4.   n and n squared, for integer values ranging from 1
  5.   to 10. Be sure to print appropriate headings.
  6. */
  7. #include <stdio.h>
  8.  
  9. int main(void) {
  10. // your code goes here
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5308KB
stdin
Standard input is empty
stdout
Standard output is empty