C Language Problem Please Explain Whats wrong if anything wi
C Language Problem
Please Explain
What\'s wrong, if anything, with the following function call: scanf(%d, first);Solution
Answer:
Basic syntax of the scanf statement is
scanf (“format string”, argument list);
but in the given statement there is no double quotes for the format string so it will not work.
