C Programming Which of the following function is more appropriate for reading in a multi-word string? scanf() printf() gets() None of these puts() scanf() printf() gets() None of these puts() ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 216 215 – 1 216 – 1 None of these 215 216 215 – 1 216 – 1 None of these 215 ANSWER DOWNLOAD EXAMIANS APP
C Programming short testarray[4][3] = { {1}, {2,3}, {4,5,6}};printf("%d", sizeof(testarray));Assuming a short is two bytes long, what will be printed by the above code? 24 7 It will not compile because not enough initializers are given 12 6 24 7 It will not compile because not enough initializers are given 12 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command comes before the first executable statement need not start on the first column need not start on a new line has # as the first character comes before the first executable statement need not start on the first column need not start on a new line has # as the first character ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Both of the above Arithmetic expressions R-values Local variables Members of a structure Both of the above Arithmetic expressions R-values Local variables Members of a structure ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char p[]="%dn"; p[1] = 'c'; printf(p, 65);} 65 c Error A 65 c Error A ANSWER DOWNLOAD EXAMIANS APP