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 does sizeof return c?
What is the -> in c?
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80
How would you obtain the current time and difference between two times?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
How do you generate random numbers in C?
What is the use of #include in c?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
Explain about C function prototype?
program for reversing a selected line word by word when multiple lines are given without using strrev
What is a double c?
Is it possible to execute code even after the program exits the main() function?
How will you divide two numbers in a MACRO?
what are enumerations in C
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping