C Programming
Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ?

Remainder cannot be obtain in floating point division.
rem = 3.14 % 2.1;
rem = modf(3.14, 2.1);
rem = fmod(3.14, 2.1);

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

All of these
Helps to avoid repeating a set of statements many times.
Makes the debugging task easier.
Helps to avoid repeated programming across programs.
Enhances the logical clarity of the program.

ANSWER DOWNLOAD EXAMIANS APP