C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0713 Syntax error 0289 1289 713 0713 Syntax error 0289 1289 713 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} Error hello 5 None of These hello garbage value Error hello 5 None of These hello garbage value 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);} 3 7 3 8 None of these 7 3 8 3 3 7 3 8 None of these 7 3 8 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the best answer.Prior to using a pointer variable None of these. It should be both declared and initialized. It should be declared. It should be initialized. None of these. It should be both declared and initialized. It should be declared. It should be initialized. ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 0 Garbage Value 1 2 3 0 Garbage Value 1 2 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Queue Array Stack Linked list Register Queue Array Stack Linked list Register ANSWER DOWNLOAD EXAMIANS APP