C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 6 0 10 None of these 1 6 0 10 None of these 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Use of functions Helps to avoid repeating a set of statements many times. All of these Helps to avoid repeated programming across programs. Makes the debugging task easier. Enhances the logical clarity of the program. Helps to avoid repeating a set of statements many times. All of these Helps to avoid repeated programming across programs. Makes the debugging task easier. Enhances the logical clarity of the program. ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of given program if user enter value 99?#includevoid main(){int i;printf("Enter a number:");scanf("%d", &i); // 99 is given as input.if(i%5 == 0){printf("nNumber entered is divisible by 5"); }} Enter a number:99 Number is divisible by 5 Run time error complier error Enter a number:99 Enter a number:99 Number is divisible by 5 Run time error complier error Enter a number:99 ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with An alphabet A special symbol other than underscore Both of the above A number An alphabet A special symbol other than underscore Both of the above A number ANSWER DOWNLOAD EXAMIANS APP
C Programming Which one of the following is not a reserved keyword for C? register main case auto default register main case auto default ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? resume break continue skip None of these resume break continue skip None of these ANSWER DOWNLOAD EXAMIANS APP