30/09/2018, 16:18

Poll: Kiểm tra kiến thức C - 4.10

Let’s have a discussion about this problem and get the answer here http://www.indiabix.com/online-test/c-programming-test/14
10. What will be the output of the program

#include<stdio.h>
void fun(int);

int main(int argc)
{
    printf("%d ", argc);
    fun(argc);
    return 0;
}
void fun(int i)
{
    if(i!=4)
        main(++i);
}
  • A. 1 2 3
  • B. 1 2 3 4
  • C. 2 3 4
  • D. 1
Lê Đình Huy viết 18:26 ngày 30/09/2018

sao có nhiều người chọn khác nhau thế nhỉ , có phải là do mỗi trương trình sẽ có 1 kết quả khác ?

Bài liên quan
0