C Programming
What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;}

None of these
5
9
Error
6

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

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

ANSWER DOWNLOAD EXAMIANS APP