Point out the error in the following program
#include <stdio.h>
#include <conio.h>
void main()
{
int a = 10;
void f();
a = f();
printf("%d", a);
getch();
}
void f()
{
printf("vncoding");
}
#include <stdio.h>
#include <conio.h>
void main()
{
int a = 10;
void f();
a = f();
printf("%d", a);
getch();
}
void f()
{
printf("vncoding");
}
Error: cannot convert ‘void’ to ‘int’
Error:
Hãy suy nghĩ và trả lời câu hỏi trước khi xem đáp án
Tổng hợp câu hỏi trắc nghiệm lập trình C/C++ có đáp án và lời giải đầy đủ nhằm giúp các bạn dễ dàng ôn tập lại toàn bộ các kiến thức.