C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 2..2 2..4 4..2 4..4 2..2 2..4 4..2 4..4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? scanf() None of these puts() printf() gets() scanf() None of these puts() printf() gets() ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ printf("%d, %d", sizeof(int *), sizeof(int **));} 2, 4 2, 0 4, 4 2, 2 0, 2 2, 4 2, 0 4, 4 2, 2 0, 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} 100 1 0 Error 100 1 0 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} None of These 64 4 16 None of These 64 4 16 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? None of these Examians Exam veda Exam_veda Both A and B None of these Examians Exam veda Exam_veda Both A and B ANSWER DOWNLOAD EXAMIANS APP