adplus-dvertising
frame-decoration

Question

Which of the following mathematical function requires 2 parameter for successful function call?

a.

fmod();

b.

div();

c.

atan2();

d.

all of the mentioned

Posted under C Programming

Answer: (d).all of the mentioned

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following mathematical function requires 2 parameter for successful function call?

Similar Questions

Discover Related MCQs

Q. Which mathematical function among the following does NOT require int parameters?

Q. sin(x) returns

Q. cos(x) returns

Q. Which among the following mathematical function do not have a “double” return-type?

Q. The function srand(unsigned)

Q. Which is the best way to generate numbers between 0 to 99?

Q. The correct way to generate numbers between minimum and maximum(inclusive) is _________________

Q. rand() and srand() functions are used

Q. What is the return type of rand() function?

Q. Which of the following can be used for random number generation?

Q. Which of the following snippet will effectively generate random numbers?

Q. Which among the following is correct function call for rand and random?

Q. For the function call time(), what type of parameter is accepted?

Q. Which of these is a correct way to generate numbers between 0 to 1(inclusive) randomly?

Q. The number of digits present after decimal in float is________.

Q. Which among the following is never possible as an output for float?

Q. In a 32-bit compiler, which 2 types have same size?

Q. What is the size of float in a 32-bit compiler?

Q. Loss in precision occurs for typecasting from____________.

Q. For union

union temp
{
char a;
int b;
float c;
};

The size is decided by: