home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1995 March / SOFM_Mar1995.bin / pc / kids / flashqz / c-lang1.qzz < prev    next >
Text File  |  1995-01-27  |  751b  |  25 lines

  1. Identifier
  2. A label for a variable, function, or data definition, etc. They are case sensitive. Start with an underline or alpha character and up to 8 chr. long
  3. main()
  4. The point at which a C program begins execution. It must appear once and only once in each program.
  5. Parentheses
  6. Indicate a function in a C program
  7. Braces
  8. Used to define the limits of a C program
  9. Semi-colon
  10. A statement terminator, signaling the end of a complete line.
  11. printf
  12. The command to print to the screen.
  13. int
  14. The label for an integer variable
  15. /*  */
  16. The enclosures for a comment
  17. for
  18. Reserved word designating a loop
  19. do
  20. Reserved word designating a conditional loop
  21. /n
  22. Designates a carriage return and line feed to the screen.
  23. %d
  24. Output a decimal variable
  25.