Is there any restriction in how many arguments printf or
scanf function can take?
in which file in my c++ compiler i can see the code for
implementation of these two functions??
Answer Posted / some
There is limitation as the function call stack is limited but both functions have variable number of arguments.
The functions are defined in <cstdio>
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is calloc in c?
Is main a keyword in c?
Can a pointer be static?
what is the role you expect in software industry?
Can an array be an Ivalue?
What are the types of macro formats?
which is an algorithm for sorting in a growing Lexicographic order
What is header file definition?
Difference between MAC vs. IP Addressing
Where is volatile variable stored?
What are the different types of control structures in programming?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
write a c program to calculate sum of digits till it reduces to a single digit using recursion
What is sizeof array in c?