Multiple choice

What is the symbol of of scope resolution operator in C language?

  1. ||

  2. *

  3. >

  4. ::

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

Scope resolution operator. It is used to call a global variable if local and global variables are declared with same name. In general call to variable in functions priority goes to local variable. Hence, to call global specifically, this operator is used.