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 |
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
void main() { int a=1; printf("%d %d %d",a,++a,a++); } the output is supposed to be 1 2 2....but it is 3 3 1 this is due to calling conventions of C. if anyone can explain me how it happens?
What are 3 types of structures?
shorting algorithmS
What is operator promotion?
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
What do you mean by scope of a variable in c?
What is difference between structure and union in c?
What is the deal on sprintf_s return value?
how the compiler treats any volatile variable?Explain with example.
How would you find a cycle in a linked list?
What is structure padding and packing in c?