C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} 13 11 None of These 12 13 11 None of These 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming What would be the output for the following Turbo C code?#includevoid main(){ int a[]={ 1, 2, 3, 4, 5 }, *p; p=a; ++*p; printf("%d ", *p); p += 2; printf("%d", *p);} 2 2 3 3 2 4 3 4 2 3 2 2 3 3 2 4 3 4 2 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 10 9 11 None of These 10 9 11 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54554 54544 45445 45545 54554 54544 45445 45545 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strchr() None of these strrchr() strstr() strnset() strchr() None of these strrchr() strstr() strnset() ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} 4 5 6 7 8 9 10 None of these 4 5 6 7 8 9 1 2 3 10 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 10 None of these 4 5 6 7 8 9 1 2 3 10 1 2 3 4 5 6 7 8 9 ANSWER DOWNLOAD EXAMIANS APP