C Programming C preprocessor Takes care of include files All of these Takes care of conditional compilation Acts before compilation Takes care of macros Takes care of include files All of these Takes care of conditional compilation Acts before compilation Takes care of macros ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 1 0 1 None of these 0 0 1 0 1 1 0 1 None of these 0 0 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following program fragment, and choose the correct onevoid main(){ int a, b = 2, c; a = 2 * (b++); c = 2 * (++b);} b = 3, c = 6 b = 4, c = 6 a = 4, c = 8 a = 3, c = 8 a = 4, c = 6 b = 3, c = 6 b = 4, c = 6 a = 4, c = 8 a = 3, c = 8 a = 4, c = 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define square(x) x*x void main(){ int i; i = 64/square(4); printf("%d", i); } None of These 64 16 4 None of These 64 16 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: *float ptr; float ptr; float *ptr; None of these *float ptr; float ptr; float *ptr; None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? All of these The operand can come before or after the operator It is a unary operator It cannot be applied to an expression It associates from the right All of these The operand can come before or after the operator It is a unary operator It cannot be applied to an expression It associates from the right ANSWER DOWNLOAD EXAMIANS APP