C Programming A preprocessor command need not start on the first column has # as the first character need not start on a new line comes before the first executable statement need not start on the first column has # as the first character need not start on a new line comes before the first executable statement 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 cannot be applied to an expression It associates from the right It is a unary operator All of these The operand can come before or after the operator It cannot be applied to an expression It associates from the right It is a unary operator ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ float me = 1.1; double you = 1.1; if(me==you) printf("I hate Examveda"); else printf("I love Examveda");} I love Examians None of These Error I hate Examians I love Examians None of These Error I hate Examians ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 12 11 15 10 12 11 15 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming #includevoid main(){ int *ptr, a=10; ptr = &a; *ptr += 1; printf("%d, %d", *ptr, a);} 11, 11 10, 10 11, 10 10, 11 11, 11 10, 10 11, 10 10, 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope No scope at all Block scope Function scope Local scope File scope No scope at all Block scope Function scope Local scope ANSWER DOWNLOAD EXAMIANS APP