#include <stdio.h> typedef struct N *ptr2; struct N { int n1; char n2; ptr2 ptr1; }; int main() { struct N n = {111, 222, &n}; printf("%d\n", n.ptr1->ptr1->n1); return 0; }
111
Previous Question Next Question
Your comments will be displayed only after manual approval.