C Programming
What will be output after executing following code?#include# define a 10void main(){ printf("%d..", a); foo(); printf("%d", a);}void foo(){ #undef a #define a 50}

10..10
10..50
0
Error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

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

ANSWER DOWNLOAD EXAMIANS APP