

MCQOPTIONS
Saved Bookmarks
1. |
In a program, If there exists a function template with two parameters and normal function say void add(int , int), so add(3,4) will _____________________ . |
A. | Invoke function template body as it is generic one |
B. | Invokes normal function as it exactly matches with its prototype |
C. | Not be called and Compiler issues warning |
D. | Not be called and Compiler issues ambiguity in calling add() |
Answer» C. Not be called and Compiler issues warning | |