1.

What will be the output of the following C code?
#include <stdio.h>
struct Man
{
char *ch;
struct Man *point;
};
void main()
{
struct Man m;
printf("%d", sizeof(m));
}

A. 4
B. 8
C. 16
D. Compilation Error
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs