C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 333 000 433 Garbage Value 444 333 000 433 Garbage Value 444 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ register i=5; char j[]= "hello"; printf("%s %d", j, i);} None of These Error hello 5 hello garbage value None of These Error hello 5 hello garbage value ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor All of these Takes care of macros Takes care of conditional compilation Acts before compilation Takes care of include files All of these Takes care of macros Takes care of conditional compilation Acts before compilation Takes care of include files ANSWER DOWNLOAD EXAMIANS APP
C Programming When a function is recursively called all the automatic variables are stored in a .......... Stack Register Array Linked list Queue Stack Register Array Linked list Queue ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed if the following code is executed?void main(){ int x=0; for( ; ; ) { if( x++ == 4 ) break; continue; } printf("x=%d", x);} x=5 Error x=4 x=1 x=0 x=5 Error x=4 x=1 x=0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 20 2 Theoratically no limit. The only practical limits are memory size and compilers. 50 8 20 2 Theoratically no limit. The only practical limits are memory size and compilers. 50 8 ANSWER DOWNLOAD EXAMIANS APP