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 |
Explain the difference between call by value and call by reference in c language?
What is a macro, and explain how do you use it?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
What is the modulus operator?
Explain how do you print only part of a string?
What should be keep precautions while using the recursion method?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Write a program in c to input a 5 digit number and print it in words.
How many loops are there in c?
What are pointers in C?
1.)how to find d most repeated word in a string? string ="how do you do"?? output should be do
1 Answers AAS, Nagarro, Vuram,
What is the difference between array and structure in c?