C Programming int a[5] = {1,2,3}What is the value of a[4]? 1 2 0 Garbage Value 3 1 2 0 Garbage Value 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int array[10]; int *i = &array[2], *j = &array[5]; int diff = j-i; printf("%d", diff);} 6 Error 3 Garbage value 6 Error 3 Garbage value 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);} 8 3 3 7 7 3 None of these 3 8 8 3 3 7 7 3 None of these 3 8 ANSWER DOWNLOAD EXAMIANS APP
C Programming If the two strings are identical, then strcmp() function returns None of these -1 0 true 1 None of these -1 0 true 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 1 2 3 0 1 2 3 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} Error 5 6 None of these 9 Error 5 6 None of these 9 ANSWER DOWNLOAD EXAMIANS APP