Q18
How do you call a function named myFunction with two arguments in C?
A.
myFunction(5, 10);
AnswerB.
myFunction();
C.
myFunction(5)(10);
D.
myFunction[5, 10];
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board