C - Basics and Execution Environment
What will be the output of this C program?
int main() {
int arr[3] = {1, 2, 3};
int *p = arr;
printf("%d", *(p + 2));
return 0;
}