C Programming Determine Output:void main(){ int i=0, j=0; if(i && j++) printf("%d..%d", i++, j); printf("%d..%d", i, j);} 0..0 1..1 0..1 1..0 0..0 1..1 0..1 1..0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? resume continue None of these skip break resume continue None of these skip break ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as System programming language Data processing language General purpose language None of these System programming language Data processing language General purpose language None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 55445 54544 45545 54554 55445 54544 45545 54554 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 None of these Exam\0Veda Exam Veda Veda Exam None of these Exam\0Veda Exam Veda Veda ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The actual values read for each argument. 0 1 ASCII value of the input read. The number of successful read input values. The actual values read for each argument. 0 1 ASCII value of the input read. The number of successful read input values. ANSWER DOWNLOAD EXAMIANS APP