Correct Answer: 63
Explanation:
Note: This Question is unanswered, help us to find answer for this one
C Programming Skill Assessment
Your Skill Level: Poor
Retake Quizzes to improve it
More C Programming MCQ Questions
Following is the correct way of initializing a two-dimensional array?
Following statements are correct for the keyword register?
Output of the following code snippet? main( ) { char *str[ ] = { 'Manish' 'Kumar' 'Choudhary' }; printf ( '\nstring1 = %s', str[0] ); printf ( '\nstring2 = %s', str[1] ); printf ( '\nstring3 = %s', str[2] ); }
This code snippet? int Recur(int num) { if(num==1 || num==0) return 1; if(num%2==0) return Recur(num/2)+2; else return Recur(num-1)+3; } int main() { int a=9; printf('%d\n', Recur(a)); return 0; }
Read the following two declaration statements. 1. #include 2. #include 'stdio.h' Which of the following statements pertaining to the above two statements are correct?
An inner loop goes through all of its iterations for every single iteration of the ________ loop.
A two-dimensional array contains two dimensions: ____.
________ is a construct that defines objects of the same type.
________ functions may have the same name, as long as their parameter lists are different.
________ functions are dynamically bound by the compiler.
C Programming MCQs | Topic-wise