What is Conio.h ?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / wazid hussain
conio.h stands for consol input output . header file that reads input from input device and send output to the monitor....
| Is This Answer Correct ? | 3 Yes | 0 No |
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
how can be easily placed in TCS.
Where does the name "C" come from, anyway?
Explain the use of keyword 'register' with respect to variables.
Between macros and functions,which is better to use and why?
What is hashing in c?
Heyyy All, Just a challenge . A C program with if Else if(){ /// insert sumthing print ("in if") // insert sumting } else { ///// insert sumthing print ("in else"); //// insert sumthing } can anyone modify it so that program prints. if and else both
Is malloc memset faster than calloc?
What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); }
21 Answers ADITI, Student, TCS,
Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
What is the use of function overloading in C?