#include <stdio.h> int main() { typedef struct B *ptr; struct B { int num1; char num2; ptr ptr1; }; struct B b = {15, 25, &b}; printf("%d\n", b.ptr1->num1); return 0; }
15
Previous Question Next Question
Your comments will be displayed only after manual approval.