#include <stdio.h> void fun(int*); int main() { int n = 101, *ptr = &n; fun(ptr++); } void fun(int *ptr) { printf("%d\n", *ptr); }
101
Previous Question Next Question
Your comments will be displayed only after manual approval.