#include < stdio. h >

void main()

{

int arr[] = {1, 2, 3, 4, 5};

int *p = arr;

printf("%d", *p++);

printf("%d", *(p + 1));

}

Find the output of the above code?

1
1, 2
2
1, 3
3
2, 3
4
1, 4

Sponsored

hivanix.in

Visit

This quiz is brought to you by hivanix.in

🌐 Web App Development

Quick Navigation