

MCQOPTIONS
Saved Bookmarks
1. |
In the below program everytime program is run different numbers are generated.#include <stdio.h>#include <stdlib.h> int main() { printf("%d n", rand()); return 0; } |
A. | Depends on the platform |
B. | True |
C. | False |
D. | Depends on the compiler |
E. | None of these |
Answer» D. Depends on the compiler | |