Multiple choice

The declaration 'char *ch' means

  1. ch contains the address of char variable

  2. ch is a char variable

  3. ch is going to contain a char value

  4. none of these

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

In C programming, the declaration char *ch defines ch as a pointer to a character, meaning ch stores the memory address of a character variable.