Bonus Marks


  • › Use a for loop to print out Hello World! five times.
  • › Use a while loop to print out Hello World! five times.
  • › Declare a function that outputs Hello World! n number of times. Call this from main.
  • › What built in types are there other than the ones listed?
  • › What other conditional operators are there other than greater than >, and less than <?
  • › What other mathematical operators are there other than add +, and subtract -?
  • › What is the += operator, and how does it work?
  • › What is the do loop, and how does it work?
  • › What is the switch statement and how does it work?
  • › What is the break keyword and what does it do?
  • › What is the continue keyword and what does it do?
  • › What does the typedef keyword do exactly?