Answers

Question and Answer:

  Home  ERRORS

⟩ What is the error in the following codemain(){int i=400,j;j=(i*i)/i;}

it is not having return statement

main()

{

int i=400,j;

j=(i*i)/i;

return 0;

}

 133 views

More Questions for you: