Post New Answer View All Answers
How can I find out if there are characters available for reading?
What does the format %10.2 mean when included in a printf statement?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
Explain what is wrong in this statement?
Explain how can you avoid including a header more than once?
What are runtime error?
Is it better to use malloc() or calloc()?
What is auto keyword in c?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
What is maximum size of array in c?
Explain the concept and use of type void.
Write a program to print numbers from 1 to 100 without using loop in c?
Can we increase size of array in c?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Can a variable be both const and volatile?