ADMICRO

What will be the output of the program?

#include <stdio.h>
#include <conio.h>
 
int reverse(int);
 
void main()
{
    int n = 5;
    reverse(n);
    getch();
}
 
int reverse(int n)
{
    if(n == 0)
        return 0;
    else
        printf("%d", n);
    reverse(n--);
}

 

Hãy suy nghĩ và trả lời câu hỏi trước khi xem đáp án

ADSENSE / 1
Câu hỏi này thuộc ngân hàng trắc nghiệm dưới đây, bấm vào Xem chi tiết để làm toàn bài
ZUNIA12
ZUNIA9
AANETWORK