C Programming What will be the output of the program ?#includevoid main(){ int a[5] = {5, 1, 15, 20, 25}; int i, j, m; i = ++a[1]; j = a[1]++; m = a[i++]; printf("%d, %d, %d", i, j, m);} 2, 3, 20 2, 1, 15 1, 2, 5 3, 2, 15 2, 3, 20 2, 1, 15 1, 2, 5 3, 2, 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is laststr() None of these strrchr() strstr() strnstr() laststr() None of these strrchr() strstr() strnstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#includevoid main(){ char s[]={'a','b','c','n','c','\0'}; char *p, *str, *str1; p=&s[3]; str=p; str1=s; printf("%c", ++*p + ++*str1-32);} M None of These N P M None of These N P ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? getch() printf() start() system() main() getch() printf() start() system() main() ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} None of these. 10 11 9 None of these. 10 11 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? + % * / None of these + % * / None of these ANSWER DOWNLOAD EXAMIANS APP