C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } 14 1 None of these 0 10 14 1 None of these 0 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? Program do no return a value. 1 2 -1 Program do no return a value. 1 2 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} 1 -1 1 1 1 -1 -1 -1 complier error 1 -1 1 1 1 -1 -1 -1 complier error ANSWER DOWNLOAD EXAMIANS APP
C Programming Any C program Must contain at least one function. Need not contain any function. Needs input data. None of these Must contain at least one function. Need not contain any function. Needs input data. None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 713 0713 Syntax error 1289 0289 713 0713 Syntax error 1289 0289 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 Exam\0Veda None of these Veda Exam Veda Exam Exam\0Veda None of these Veda Exam Veda ANSWER DOWNLOAD EXAMIANS APP