C Programming C preprocessor Takes care of macros Takes care of include files All of these Takes care of conditional compilation Acts before compilation Takes care of macros Takes care of include files All of these Takes care of conditional compilation Acts before compilation ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code fragment?void main(){ printf("%x",-1<<4);} fff1 fff3 fff2 fff0 fff4 fff1 fff3 fff2 fff0 fff4 ANSWER DOWNLOAD EXAMIANS APP
C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 1 2 3 0 1 2 3 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? auto default register case main auto default register case main ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 13 11 12 None of These 13 11 12 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Partitioning the string into two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. Merging two strings. Combining two strings. Partitioning the string into two strings. Extracting a substring out of a string. Comparing the two strings to define the larger one. Merging two strings. Combining two strings. ANSWER DOWNLOAD EXAMIANS APP