home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / languages / progs / ctutor / Examples / goodform < prev    next >
Encoding:
Text File  |  1990-10-01  |  301 b   |  10 lines

  1. main()  /* Main program starts here */
  2. {
  3.    printf("Good form ");
  4.    printf          ("can aid in ");
  5.    printf                     ("understanding a program.\n");
  6.    printf("And bad form ");
  7.    printf             ("can make a program ");
  8.    printf                                ("unreadable.\n");
  9. }
  10.