ERRORS Question:

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

ERRORS Interview Question
ERRORS Interview Question

Answer:

it is not having return statement

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


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#?