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 / 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 |
Post New Answer View All Answers
What are variables and it what way is it different from constants?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What library is sizeof in c?
What is malloc() function?
Explain how do you search data in a data file using random access method?
What are the types of functions in c?
List out few of the applications that make use of Multilinked Structures?
Is null always equal to 0(zero)?
Why functions are used in c?
Why we use break in c?
What are pointers in C? Give an example where to illustrate their significance.
Explain what is the difference between #include and #include 'file' ?
What are bitwise shift operators in c programming?
Difference between malloc() and calloc() function?