C Programming Which of the following comments about the ++ operator are correct? It cannot be applied to an expression It is a unary operator All of these The operand can come before or after the operator It associates from the right It cannot be applied to an expression It is a unary operator All of these The operand can come before or after the operator It associates from the right ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? default auto case register main default auto case register main ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 4, 4 0, 2 2, 0 2, 2 2, 4 4, 4 0, 2 2, 0 2, 2 2, 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Unary-operator Comma operator Assignment operator Division operator Conditional operator Unary-operator Comma operator Assignment operator Division operator Conditional operator ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} 4 None of These 64 16 4 None of These 64 16 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} None of These H Some Address will be printed Hello None of These H Some Address will be printed Hello ANSWER DOWNLOAD EXAMIANS APP