C Programming Which of the following function is used to find the first occurrence of a given string in another string? strrchr() None of these strnset() strstr() strchr() strrchr() None of these strnset() strstr() strchr() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} -1 17 19 20 16 -1 17 19 20 16 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 0 1 1 1 0 None of these 0 1 0 0 1 1 1 0 None of these 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program code?#include#define a 10void main(){ #define a 50 printf("%d", a);} None of These 50 Compiler Error 10 None of These 50 Compiler Error 10 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;} 5 6 Error None of these 9 5 6 Error None of these 9 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++);} 6 6 12 7 5 6 11 6 6 7 6 6 12 7 5 6 11 6 6 7 ANSWER DOWNLOAD EXAMIANS APP