C Programming An array elements are always stored in ________ memory locations. Sequential and Random Sequential None of these Random Sequential and Random Sequential None of these Random ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} 6 Garbage Value Compiler Error 5 6 Garbage Value Compiler Error 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming What does the following declaration mean?int (*ptr)[10]; ptr is an array of 10 integers ptr is a pointer to an array of 10 integers ptr is an pointer to array ptr is array of pointers to 10 integers ptr is an array of 10 integers ptr is a pointer to an array of 10 integers ptr is an pointer to array ptr is array of pointers to 10 integers ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int var = 5; printf("%d ", var--); if(var) main();} Infinite Loop 5 5 5 5 5 5 4 3 2 1 None of These Infinite Loop 5 5 5 5 5 5 4 3 2 1 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? It is a unary operator It cannot be applied to an expression All of these The operand can come before or after the operator It associates from the right It is a unary operator It cannot be applied to an expression All of these The operand can come before or after the operator It associates from the right ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Last In First Out order Iterative order First In First Out order Parallel order Random order Last In First Out order Iterative order First In First Out order Parallel order Random order ANSWER DOWNLOAD EXAMIANS APP