C Programming Which operator from the following has the lowest priority? Division operator Assignment operator Conditional operator Comma operator Unary-operator Division operator Assignment operator Conditional operator Comma operator Unary-operator ANSWER DOWNLOAD EXAMIANS APP
C Programming Identify the correct output of the following code:void main(){ int w=10, x=5, y=3, z=3; if( (w < x ) && (y=z++) ) printf("%d %d %d %d", w, x, y, z); else printf("%d %d %d %d", w, x, y, z);} 10 5 4 3 10 5 4 4 10 5 5 5 10 5 3 4 10 5 3 3 10 5 4 3 10 5 4 4 10 5 5 5 10 5 3 4 10 5 3 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming char* myfunc(char *ptr){ ptr+=3; return(ptr);}void main(){ char *x, *y; x = "EXAMVEDA"; y = myfunc(x); printf("y=%s", y);}What will be printed when the sample code above is executed? y=MVEDA y=VEDA y=EXAMIANS y=EDA y=AMVEDA y=MVEDA y=VEDA y=EXAMIANS y=EDA y=AMVEDA ANSWER DOWNLOAD EXAMIANS APP
C Programming #includevoid main(){ int *ptr, a=10; ptr = &a; *ptr += 1; printf("%d, %d", *ptr, a);} 10, 11 10, 10 11, 10 11, 11 10, 11 10, 10 11, 10 11, 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} None of these 65486, 65487 65486, 65486 65486, 65488 65486, 65490 None of these 65486, 65487 65486, 65486 65486, 65488 65486, 65490 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){int a=11,b=5;if(a=5) b++;printf("%d %d", ++a, b++);} 12 7 6 6 5 6 11 6 6 7 12 7 6 6 5 6 11 6 6 7 ANSWER DOWNLOAD EXAMIANS APP