C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 4..4 2..4 2..2 4..2 4..4 2..4 2..2 4..2 ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. None of these Random Sequential and Random Sequential None of these Random Sequential and Random Sequential ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? Exam veda Examians Both A and B Exam_veda None of these Exam veda Examians Both A and B Exam_veda None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));} 100 Runtime error 10012 g##g2 Syntax error 100 Runtime error 10012 g##g2 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming Which is the only function all C programs must contain? start() system() main() printf() getch() start() system() main() printf() getch() ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During linking During Execution None of these During Editing During Preprocessing During linking During Execution None of these During Editing During Preprocessing ANSWER DOWNLOAD EXAMIANS APP