C Programming int a[5] = {1,2,3}What is the value of a[4]? 1 3 Garbage Value 2 0 1 3 Garbage Value 2 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Both of the above Local variables Members of a structure R-values Arithmetic expressions Both of the above Local variables Members of a structure R-values Arithmetic expressions ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 45545 55445 54544 54554 45545 55445 54544 54554 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff2 fff4 fff0 fff3 fff1 fff2 fff4 fff0 fff3 fff1 ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor All of these Acts before compilation Takes care of include files Takes care of conditional compilation Takes care of macros All of these Acts before compilation Takes care of include files Takes care of conditional compilation Takes care of macros ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=0; for(;i++;printf("%d", i)); printf("%d", i);} Error 11 12 1 Error 11 12 1 ANSWER DOWNLOAD EXAMIANS APP