#include void main() { int n = 6; int *ptr1 = &n; int *ptr2 = ptr1++; int Res = ptr1 - ptr2; printf("%d", Res); }
1
Previous Question Next Question
Your comments will be displayed only after manual approval.