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? None of these printf() puts() scanf() gets() None of these printf() puts() scanf() gets() ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} None of These 13 11 12 None of These 13 11 12 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } None of these 0 1 14 10 None of these 0 1 14 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: float ptr; None of these *float ptr; float *ptr; float ptr; None of these *float ptr; float *ptr; ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 0 -1 Compilation Error 1 33 0 -1 Compilation Error 1 33 ANSWER DOWNLOAD EXAMIANS APP