C Programming Which operator has the lowest priority? % ++ || + && % ++ || + && ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} hi hi followed by garbage value Error h Garbage Value hi hi followed by garbage value Error h Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 5 5 10 5 3 3 10 5 4 4 10 5 4 3 10 5 3 4 10 5 5 5 10 5 3 3 10 5 4 4 10 5 4 3 10 5 3 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will happen after compiling and running following code?main(){ printf("%p", main); } Error Some address will be printed. Will make an infinite loop. None of these. Error Some address will be printed. Will make an infinite loop. None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope No scope at all Block scope File scope Local scope Function scope No scope at all Block scope File scope Local scope ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as Data processing language None of these System programming language General purpose language Data processing language None of these System programming language General purpose language ANSWER DOWNLOAD EXAMIANS APP