#include <stdio.h> int *fun() { int *ptr1 = 10; return ptr1; } void main() { int *ptr2 = fun(); printf("%d", ptr2); }
10
Previous Question Next Question
Your comments will be displayed only after manual approval.