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 / 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 |
Post New Answer View All Answers
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Why is structure padding done in c?
Create a simple code fragment that will swap the values of two variables num1 and num2.
I heard that you have to include stdio.h before calling printf. Why?
What is optimization in c?
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
If the size of int data type is two bytes, what is the range of signed int data type?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
Explain is it better to bitshift a value than to multiply by 2?
What should malloc(0) do? Return a null pointer or a pointer to 0 bytes?
What is break in c?
What is the use of ?
How does selection sort work in c?
what will be the output for the following main() { printf("hi" "hello"); }
When should a type cast be used?