C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} Compiler Error Garbage Value 6 5 Compiler Error Garbage Value 6 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program Must contain at least one function. None of these Needs input data. Need not contain any function. Must contain at least one function. None of these Needs input data. Need not contain any function. ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 0 2, 4 2, 2 4, 4 0, 2 2, 0 2, 4 2, 2 4, 4 0, 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Random order Parallel order Last In First Out order Iterative order First In First Out order Random order Parallel order Last In First Out order Iterative order First In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Unary-operator Conditional operator Division operator Comma operator Assignment operator Unary-operator Conditional operator Division operator Comma operator Assignment operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){int a=3;for(;a;printf("%d ", a--);} 3 2 1 0 no output 3 2 1 infinity loop 3 2 1 0 no output 3 2 1 infinity loop ANSWER DOWNLOAD EXAMIANS APP