Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 Which of the following operations are INCORRECT? ?->(Show Answer!)
1. Which of the following operations are INCORRECT?
Ask Your Doubts Here
Comments
By: guest on 01 Jun 2017 06.01 pm
float a = 3.14; a = a%3; gives "Illegal use of floating point" error. The modulus (%) operator can only be used on integer types. We have to use fmod() function in math.h for float values.