Predict the output of the following code
#include stdio.h
void main() {
   char a='b';
   char *b;
   char **c;
   b=&a;
   c=&b;
   printf("%c",**c);
}

Posted on by