Q. What will be the output of the following program?
Code:#include iostream.h void main() { float x=5,y=2; int result; result=x % y; cout result; }
β
Correct Answer: (D)
Error message
#include iostream.h void main() { float x=5,y=2; int result; result=x % y; cout result; }
You must be Logged in to update hint/solution