Multiple choice

Find the odd one out.

  1. for

  2. if

  3. printf

  4. hello world

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

For and if are programming keywords (control structures), and printf is a standard library function. 'Hello world' is a string literal.