C Programming The function scanf() returns ......... 0 ASCII value of the input read. The number of successful read input values. 1 The actual values read for each argument. 0 ASCII value of the input read. The number of successful read input values. 1 The actual values read for each argument. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#include void main(){ int i=3, *j, **k; j = &i; k = &j; printf("%d%d%d", *j, **k, *(*k));} 444 433 333 Garbage Value 000 444 433 333 Garbage Value 000 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? None of these * + / % None of these * + / % ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Some Address will be printed None of These Hello H Some Address will be printed None of These Hello H 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? None of these resume continue skip break None of these resume continue skip break 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 None of these Veda Exam\0Veda Exam Veda Exam None of these Veda Exam\0Veda ANSWER DOWNLOAD EXAMIANS APP