41. Which is the string termination character:
Correct answer: (C)
'\0'
42. char *name= "India"; strupr(name); puts(name); Output of this program is:
Correct answer: (C)
INDIA
43. Which statement is wrong:
Correct answer: (D)
Function cannot be reused.
44. A function can return only ____________
Correct answer: (A)
Single value
45. Mathematical function are stored in ____________ header file:
Correct answer: (C)
math.h
46. A function which invokes itself repeatedly until some condition is satisfied is called a ____________ function.
Correct answer: (A)
Recursive
47. ++ is ____________ operator:
Correct answer: (B)
Increment
48. An array can be declared:
Correct answer: (A)
Statically
49. Array can be:
Correct answer: (C)
Both
50. Array index is always starts from:
Correct answer: (A)
0