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 / s.velmurugan
Yes
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Explain how many levels deep can include files be nested?
How is = symbol different from == symbol in c programming?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What is the difference between volatile and const volatile?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
What is hashing in c language?
Explain what is the difference between a free-standing and a hosted environment?
When is a “switch” statement preferable over an “if” statement?
Write a program of prime number using recursion.
Is javascript written in c?
What is the scope of static variable in c?
What are data structures in c and how to use them?
write a c program in such a way that if we enter the today date the output should be next day's date.
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Who developed c language and when?