Q. What is the value of a in below program?
Code:
int main()
{
int a, b=20;
a = 90/b;
return 0;
}
β
Correct Answer: (A)
4
int main()
{
int a, b=20;
a = 90/b;
return 0;
}
You must be Logged in to update hint/solution