C Programming
What would be the output for the following Turbo C code?#includevoid main(){ int a[]={ 1, 2, 3, 4, 5 }, *p; p=a; ++*p; printf("%d ", *p); p += 2; printf("%d", *p);}

2 3
3 3
2 2
2 4
3 4

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

need not start on the first column
comes before the first executable statement
has # as the first character
need not start on a new line

ANSWER DOWNLOAD EXAMIANS APP