

MCQOPTIONS
Saved Bookmarks
1. |
In the following program add a statement in the function fact() such that the factorial gets stored in j.
#include
|
A. | j=s; |
B. | *j=s; |
C. | *j=&s; |
D. | &j=s; |
Answer» C. *j=&s; | |