Multiple choice technology programming languages

Which symbol is used as the End of Line in C

  1. .

  2. `

  3. ~

  4. ;

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

The correct answer is D (;) - the semicolon. In C, the semicolon marks the end of a statement. Options: . is member access, ` is backtick (not C syntax), ~ is bitwise NOT. Every C statement must end with semicolon.