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

Submitted by: Administrator
it is not having return statement

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

Read Online ERRORS Job Interview Questions And Answers