C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 11 10 15 12 11 10 15 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Acts before compilation Takes care of include files All of these Takes care of conditional compilation Takes care of macros Acts before compilation Takes care of include files All of these Takes care of conditional compilation Takes care of macros ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... No scope at all Function scope Local scope File scope Block scope No scope at all Function scope Local scope File scope Block scope ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... string no such function in 'C'. Data file stderr stdin string no such function in 'C'. Data file stderr stdin ANSWER DOWNLOAD EXAMIANS APP
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);} 3 4 2 2 2 3 2 4 3 3 3 4 2 2 2 3 2 4 3 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with An alphabet A number A special symbol other than underscore Both of the above An alphabet A number A special symbol other than underscore Both of the above ANSWER DOWNLOAD EXAMIANS APP