700+ câu trắc nghiệm Ngôn ngữ lập trình C có đáp án - Phần 6

Which of the following is a complete function?

4/25

Which of the following is a complete function?

int funct();

int funct(int x) {return x=x+1;}

void funct(int) {printf( “Hello” );

void funct(x) {printf( “Hello” ); }

Giải thích

Chọn đáp án B