C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 10 1 0 14 None of these 10 1 0 14 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strnstr() None of these strrchr() strstr() laststr() strnstr() None of these strrchr() strstr() laststr() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int value=0; if(value) printf("well done "); printf("examveda");} well done examians examians complier error None of these well done examians examians complier error None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?main() { char *p; p = "Hello"; printf("%cn",*&*p); } H None of these. Some address will be printed Hello H None of these. Some address will be printed Hello ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ static int var = 5; printf("%d ", var--); if(var) main();} 5 5 5 5 5 5 4 3 2 1 None of These Infinite Loop 5 5 5 5 5 5 4 3 2 1 None of These Infinite Loop ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? ++ + && % || ++ + && % || ANSWER DOWNLOAD EXAMIANS APP