C Programming int a[5] = {1,2,3}What is the value of a[4]? 2 3 0 1 Garbage Value 2 3 0 1 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define square(x) x*x void main(){ int i; i = 64/square(4); printf("%d", i); } 64 16 4 None of These 64 16 4 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? + None of these * % / + None of these * % / ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of include files Takes care of conditional compilation Acts before compilation Takes care of macros All of these Takes care of include files Takes care of conditional compilation Acts before compilation Takes care of macros All of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); 0 Syntax error 0123456789 10 Infinite loop 0 Syntax error 0123456789 10 Infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 – 1 None of these 216 215 216 – 1 215 – 1 None of these 216 215 216 – 1 ANSWER DOWNLOAD EXAMIANS APP