C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 4, 4 2, 0 0, 2 2, 4 2, 2 4, 4 2, 0 0, 2 2, 4 2, 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a valid identifier? _examians examians1 exam_veda 1examians _examians examians1 exam_veda 1examians ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int var = 5; printf("%d ", var--); if(var) main();} 5 4 3 2 1 5 5 5 5 5 Infinite Loop None of These 5 4 3 2 1 5 5 5 5 5 Infinite Loop None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Assignment operator Unary-operator Comma operator Division operator Conditional operator Assignment operator Unary-operator Comma operator Division operator Conditional operator ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? || ++ % + && || ++ % + && 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 16 4 64 None of These 16 4 64 ANSWER DOWNLOAD EXAMIANS APP