Home » C Programming » Data Types » Question
  1. Modulus for float could be achieved by?
    1. mod(p, q);
    2. fmod(p, q);
    3. modulus(p, q);
    4. p % q
    5. None of these
Correct Option: B

fmod(p, q);



Your comments will be displayed only after manual approval.