#include <stdio.h> int main() { int array[5] = {11, 12, 13, 14, 15}; int *ptr = array + 7; printf("%d\n", ptr[-3]); }
15
Previous Question Next Question
Your comments will be displayed only after manual approval.