C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} Error hello garbage value hello 5 None of These Error hello garbage value hello 5 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} Compilation error 12 13 14 11 Compilation error 12 13 14 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 1 ASCII value of the input read. The number of successful read input values. 0 The actual values read for each argument. 1 ASCII value of the input read. The number of successful read input values. 0 The actual values read for each argument. ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 216 215 – 1 None of these 216 – 1 215 216 215 – 1 None of these 216 – 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Unary-operator Division operator Assignment operator Comma operator Conditional operator Unary-operator Division operator Assignment operator Comma operator Conditional operator ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the best answer.Prior to using a pointer variable None of these. It should be initialized. It should be declared. It should be both declared and initialized. None of these. It should be initialized. It should be declared. It should be both declared and initialized. ANSWER DOWNLOAD EXAMIANS APP