C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} 1 2 3 10 None of these 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 1 2 3 10 None of these 4 5 6 7 8 9 10 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5, j=6, z; printf("%d", i+++j);} None of These 11 12 13 None of These 11 12 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program if the array begins at address 65486?#includevoid main(){ int arr[] = {12, 14, 15, 23, 45}; printf("%u, %u", arr, &arr);} 65486, 65490 65486, 65486 65486, 65487 65486, 65488 None of these 65486, 65490 65486, 65486 65486, 65487 65486, 65488 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming short testarray[4][3] = { {1}, {2,3}, {4,5,6}};printf("%d", sizeof(testarray));Assuming a short is two bytes long, what will be printed by the above code? 7 6 24 12 It will not compile because not enough initializers are given 7 6 24 12 It will not compile because not enough initializers are given ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strstr() strchr() strnset() strrchr() None of these strstr() strchr() strnset() strrchr() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command need not start on a new line need not start on the first column comes before the first executable statement has # as the first character need not start on a new line need not start on the first column comes before the first executable statement has # as the first character ANSWER DOWNLOAD EXAMIANS APP