C Programming int a[5] = {1,2,3}What is the value of a[4]? 2 3 0 Garbage Value 1 2 3 0 Garbage Value 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with A special symbol other than underscore A number An alphabet Both of the above A special symbol other than underscore A number An alphabet Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following type definition.typedef char x[10];x myArray[5];What will sizeof(myArray) be ? (Assume one character occupies 1 byte) 15 10 50 None of these 30 15 10 50 None of these 30 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 Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);} None of these 7 3 8 3 3 8 3 7 None of these 7 3 8 3 3 8 3 7 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following program?#includeint c[10] = {1,2,3,4,5,6,7,8,9,10}; main(){ int a, b=0; for(a=0;a<10;++a) if(c[a]%2 == 1) b+=c[a]; printf("%d", b);} None of these 25 20 30 24 None of these 25 20 30 24 ANSWER DOWNLOAD EXAMIANS APP