#include <stdio.h> struct Man { char *ch; struct Man *point; }; void main() { struct Man m; printf("%d", sizeof(m)); }
16
Previous Question Next Question
Your comments will be displayed only after manual approval.