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