C Programming What will happen after compiling and running following code?main(){ printf("%p", main); } Will make an infinite loop. Some address will be printed. None of these. Error Will make an infinite loop. Some address will be printed. None of these. Error ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Members of a structure R-values Arithmetic expressions Local variables Both of the above Members of a structure R-values Arithmetic expressions Local variables Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program Needs input data. None of these Must contain at least one function. Need not contain any function. Needs input data. None of these Must contain at least one function. Need not contain any function. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 55445 54544 45545 54554 55445 54544 45545 54554 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 2 5 5 5 5 5 2 4 5 2 4 4 2 5 5 5 5 5 2 4 5 2 4 4 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? It will not compile because not enough initializers are given 12 24 7 6 It will not compile because not enough initializers are given 12 24 7 6 ANSWER DOWNLOAD EXAMIANS APP