C Functions Questions and Answers
Practice ModeShowing 10 of 151 questions
Q21
The function defined in match.h file for returning the are tangent of x is
Answer: Option B
Q22
the function cell(x) defined in math.h
Answer: Option B
Q23
The function floor (x) in math.h
Answer: Option A
Q24
The function strcpy (s1, s2) in string.h
Answer: Option B
Q25
The function strcat (s1, s2) in string.h
Answer: Option D
Q26
The function strcm(s1, s2) returns zero
Answer: Option C
Q27
The function tolower (ch) in ctype.h
Answer: Option B
Q28
What function must all C programs have ?
Answer: Option B
Q29
In C, which of the following statement (s) is (are) TRUE about the way the arguments are passed ?
1. The order of evaluation of arguments is compiler dependant.
2. Arguments are passed by reference.
Answer: Option B
Q30
Which of the following statements in C is/are TRUE ?
1. Two functions can have the same name in a single program.
2. Function calls can be recursive.
Answer: Option C