ERRORS Question:
Download Questions PDF

What is the error in the following code:
main()
{
int i=400,j;
j=(i*i)/i;
}

Answer:

it is not having return statement

main()
{
int i=400,j;
j=(i*i)/i;
return 0;
}

Download ERRORS Interview Questions And Answers PDF

Previous QuestionNext Question
What is the large sustained error signal that eventually cause the controller output to drive to its limit?What is Difference Between Server.Response and Response.Redirect in ASP.Net with C#?