Multiple choice The declaration 'char *ch' means ch contains the address of char variable ch is a char variable ch is going to contain a char value 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.