C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 4..2 2..4 2..2 4..4 4..2 2..4 2..2 4..4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following correctly accesses the seventh element stored in arr, an array with 100 elements? arr{6} arr[6] None of these arr{7} arr[7] arr{6} arr[6] None of these arr{7} arr[7] ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope Block scope File scope No scope at all Local scope Function scope Block scope File scope No scope at all Local scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of following is not a valid name for a C variable? None of these Exam veda Both A and B Examians Exam_veda None of these Exam veda Both A and B Examians Exam_veda ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be output after executing following code?#include# define a 10void main(){ printf("%d..", a); foo(); printf("%d", a);}void foo(){ #undef a #define a 50} Error 0 10..50 10..10 Error 0 10..50 10..10 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str1[20] = "Hello", str2[20] = " World"; printf("%s", strcpy(str2, strcat(str1, str2)));} None of these World WorldHello Hello Hello World None of these World WorldHello Hello Hello World ANSWER DOWNLOAD EXAMIANS APP