C Programming int a[5] = {1,2,3}What is the value of a[4]? 2 0 Garbage Value 3 1 2 0 Garbage Value 3 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Choose the correct output for the following program.#includevoid main(){ int a=10, b=11, c=13, d; d = (a=c, b+=a, c=a+b+c); printf("%d %d %d %d", d, a, b, c);} 13, 10, 24, 50 50, 13, 24, 50 50, 13, 11, 13 50, 13, 24, 13 13, 13, 24, 13 13, 10, 24, 50 50, 13, 24, 50 50, 13, 11, 13 50, 13, 24, 13 13, 13, 24, 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? && + % || ++ && + % || ++ ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); None of these 0 1 1 1 1 0 0 0 None of these 0 1 1 1 1 0 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the correct output of the following program?#includevoid main(){ char str[] = "C EXAMINATION", rev[17]; int i = strlen(str), j=0; for( ; i>=0; rev[j++] = str[i--]) rev[j] = str[j] ; puts(rev);} No output at all. NOITANIMAXE Syntax error C NOITANIMAXE C No output at all. NOITANIMAXE Syntax error C NOITANIMAXE C ANSWER DOWNLOAD EXAMIANS APP
C Programming A function 'p' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as int (*p) (char *)[] int *p(char *)[] None of these. int(*p(char *))[] int (*p) (char *)[] int *p(char *)[] None of these. int(*p(char *))[] ANSWER DOWNLOAD EXAMIANS APP