C Programming Which of following is not a valid name for a C variable? Both A and B Examians Exam_veda None of these Exam veda Both A and B Examians Exam_veda None of these Exam veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);} 0 1 2 3 None of these 1 1 2 2 1 1 2 3 0 1 2 2 0 1 2 3 None of these 1 1 2 2 1 1 2 3 0 1 2 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... no such function in 'C'. stdin Data file string stderr no such function in 'C'. stdin Data file string stderr ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is laststr() strrchr() strnstr() None of these strstr() laststr() strrchr() strnstr() None of these strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);} 8 3 3 7 None of these 7 3 3 8 8 3 3 7 None of these 7 3 3 8 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 053 65 53 65 065 65 Syntax error 65 65 053 65 53 65 065 65 Syntax error 65 65 ANSWER DOWNLOAD EXAMIANS APP