#include <stdio.h> int main() { int A[5] = {10, 20, 30, 40, 50}; int *ptr = A + 2; printf("%d %d\n", ptr[-1], A[*ptr]); }
20 0
Previous Question Next Question
Your comments will be displayed only after manual approval.