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