C Programming Question Paper
C Programming Question Paper
Total Marks: 20
Time: 45 minutes
2. #include<stdio.h>
3. int main() {
4. printf("%d", 5 + 3 * 2);
5. return 0;
6. }
a) 16
b) 11
c) 13
d) 10
11. Write a program to calculate the factorial of a number entered by the user. Use recursion to
implement the solution.