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 are valid operations on pointers?
Not all reserved words are written in lowercase. TRUE or FALSE?
Why we write conio h in c?
What is c variable?
what type of questions arrive in interview over c programming?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
What is the value of h?
What is the sizeof () operator?
What is meant by high-order and low-order bytes?
What are qualifiers in c?
What is C language ?
Explain how can I prevent another program from modifying part of a file that I am modifying?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What type is sizeof?
Array is an lvalue or not?