C Programming An array elements are always stored in ________ memory locations. Sequential Sequential and Random None of these Random Sequential Sequential and Random None of these Random ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} h Garbage Value hi hi followed by garbage value Error h Garbage Value hi hi followed by garbage value Error ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 22 13 14 14 22 14 12 13 22 11 11 11 12 10 11 13 22 12 12 13 22 13 14 14 22 14 12 13 22 11 11 11 12 10 11 13 22 12 12 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 53 65 065 65 053 65 65 65 Syntax error 53 65 065 65 053 65 65 65 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} None of These H Hello Some Address will be printed None of These H Hello Some Address will be printed ANSWER DOWNLOAD EXAMIANS APP
C Programming Array passed as an argument to a function is interpreted as Values of the first elements of the array. Number of element of the array. Address of the array. Address of the first element of the array. Values of the first elements of the array. Number of element of the array. Address of the array. Address of the first element of the array. ANSWER DOWNLOAD EXAMIANS APP