C C++ Errors Question:
Download Questions PDF

What is meant for variable not found?

C C++ Errors Interview Question
C C++ Errors Interview Question

Answer:

when u have not declared variable in the main function or
any other function but used in the program.
example:
main()
{
int i,j;----------------> (iSum not declared)
printf("enter the value of i and j");
scanf("%d%d",&i,&j);
iSum = i + j;
printf("The Sum =",iSum);
getch();
}
In this case iSum will Show a compiler error "Variable not
found".

Download C C++ Errors Interview Questions And Answers PDF

Previous QuestionNext Question
What is syntax error?Errors are known as?