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??
Answers were Sorted based on User's Feedback
Answer / uma sankar pradhan
printf() and scanf() are variable argument list functions
They can take any number of values as their arguments
The prototypes for these functions are found in the header
file "stdio.h"
| Is This Answer Correct ? | 20 Yes | 2 No |
Answer / 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 |
Answer / venkatesh
printf() and scanf() can take any number of arguments.
the prototypes of these functiona are stdio.h and conio.h
| Is This Answer Correct ? | 8 Yes | 7 No |
What is an identifier?
Stimulate calculator using Switch-case-default statement for two numbers
What are operators in c?
How arrays can be passed to a user defined function
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
Describe static function with its usage?
What are the advantages of external class?
write a program to print calender using for loop.
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
Explain argument and its types.
I want tcs placement papers of 2004-2009 , its urgent
What are types of preprocessor in c?