C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 0 1 1 None of these 0 1 0 0 1 0 1 1 None of these 0 1 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output given program?#includevoid main(){int i = -10;for(;i;printf("%d ", i++));} -10 to -1 -10 to infinite Complier error -10 to 0 -10 to -1 -10 to infinite Complier error -10 to 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} Exam Veda Exam\0Veda Veda Exam None of these Exam Veda Exam\0Veda Veda Exam None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor Takes care of include files Acts before compilation Takes care of macros Takes care of conditional compilation All of these Takes care of include files Acts before compilation Takes care of macros Takes care of conditional compilation All of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is laststr() strnstr() None of these strrchr() strstr() laststr() strnstr() None of these strrchr() strstr() ANSWER DOWNLOAD EXAMIANS APP
C Programming What number would be shown on the screen after the following statements of C are executed?char ch; int i; ch = 'G'; i = ch-'A';printf("%d", i); 9 5 8 7 6 9 5 8 7 6 ANSWER DOWNLOAD EXAMIANS APP