C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} Error hi followed by garbage value Garbage Value h hi Error hi followed by garbage value Garbage Value h hi ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Members of a structure Both of the above Local variables Arithmetic expressions R-values Members of a structure Both of the above Local variables Arithmetic expressions R-values ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 40 30 24 36 32 40 30 24 36 32 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will happen after compiling and running following code?main(){ printf("%p", main); } Some address will be printed. Error None of these. Will make an infinite loop. Some address will be printed. Error None of these. Will make an infinite loop. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? No data type float Depends upon the type of the variable to which it is pointing. unsigned int int No data type float Depends upon the type of the variable to which it is pointing. unsigned int int ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? 450 -10 10 -110 110 450 -10 10 -110 110 ANSWER DOWNLOAD EXAMIANS APP