Answer Posted / deepak kumar dhurve
(Console Input Output Header File) used generally used in console based application both can be used ini a single header file,there are no problem using both header file in a single header file.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of void in c?
Write a code to generate a series where the next element is the sum of last k terms.
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
What does char * * argv mean in c?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
What is a macro, and explain how do you use it?
What is a const pointer?
Explain what is operator promotion?
Do you know pointer in c?
How can you allocate arrays or structures bigger than 64K?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is the difference between arrays and pointers?
What does %p mean c?
Is Exception handling possible in c language?