C Programming int a[5] = {1,2,3}What is the value of a[4]? Garbage Value 3 2 1 0 Garbage Value 3 2 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? % || ++ && + % || ++ && + ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator from the following has the lowest priority? Unary-operator Assignment operator Conditional operator Comma operator Division operator Unary-operator Assignment operator Conditional operator Comma operator Division operator ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:main(){ char *str1 = "abcd"; char str2[] = "abcd"; printf("%d %d %d", sizeof(str1), sizeof(str2), sizeof("abcd"));} 2 5 5 2 4 5 2 4 4 8 5 5 2 5 5 2 4 5 2 4 4 8 5 5 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... string stderr Data file stdin no such function in 'C'. string stderr Data file stdin no such function in 'C'. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 11 9 10 None of These 11 9 10 None of These ANSWER DOWNLOAD EXAMIANS APP