C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 0 1 1 1 1 0 0 0 None of these 0 1 1 1 1 0 0 0 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? -10 10 450 -110 110 -10 10 450 -110 110 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 Veda Exam\0Veda None of these Exam Veda Exam Veda Exam\0Veda None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is a complete function? int funct(); void funct(int) { printf(“Hello"); } void funct(x) { printf(“Hello"); } None of these int funct(int x) { return x=x+1; } int funct(); void funct(int) { printf(“Hello"); } void funct(x) { printf(“Hello"); } None of these int funct(int x) { return x=x+1; } ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 0 1 6 None of these 10 0 1 6 None of these 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? gets() puts() None of these scanf() printf() gets() puts() None of these scanf() printf() ANSWER DOWNLOAD EXAMIANS APP