C Programming What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));} 1 1 1 2 2 1 2 2 1 1 1 2 2 1 2 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 1 The number of successful read input values. 0 ASCII value of the input read. The actual values read for each argument. 1 The number of successful read input values. 0 ASCII value of the input read. The actual values read for each argument. ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... stderr Data file no such function in 'C'. string stdin stderr Data file no such function in 'C'. string stdin ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Division operator Conditional operator Comma operator Unary-operator Assignment operator Division operator Conditional operator Comma operator Unary-operator Assignment operator ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int value=0; if(value) printf("well done "); printf("examveda");} None of these examians well done examians complier error None of these examians well done examians complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));} 11 10 15 12 None of these 11 10 15 12 None of these ANSWER DOWNLOAD EXAMIANS APP