Standard Library Functions - Study Mode
[#156] void free(void *ptr) deallocates the memory previously allocated by a call to . . . . . . . . , . . . . . . . . or . . . . . . . .
Correct Answer
(C) calloc,malloc,realloc
[#157] What is returned by the function if the space cannot be allocated by the function malloc(), realloc() and calloc()?
Correct Answer
(C) null pointer
[#158] RAND_MAX macro is the maximum value returned by the rand function.
Correct Answer
(A) true
[#159] Which function returns the arc sine in the range [-pi/2, +pi/2] radians?
Correct Answer
(B) asin()
[#160] If the result underflow, the function returns zero.
Correct Answer
(A) true