C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 4 4, 4 2, 0 0, 2 2, 2 2, 4 4, 4 2, 0 0, 2 2, 2 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");} Error None of These I hate Examians I love Examians Error None of These I hate Examians I love Examians ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... First In First Out order Iterative order Parallel order Last In First Out order Random order First In First Out order Iterative order Parallel order Last In First Out order Random order ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);} 8 3 7 3 3 8 None of these 3 7 8 3 7 3 3 8 None of these 3 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During linking None of these During Editing During Execution During Preprocessing During linking None of these During Editing During Execution During Preprocessing ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} Garbage Value h hi Error hi followed by garbage value Garbage Value h hi Error hi followed by garbage value ANSWER DOWNLOAD EXAMIANS APP