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 |
Differentiate between functions getch() and getche().
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
How can I read data from data files with particular formats?
is it possible to create your own header files?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }
what is the output of printf("%d",(scanf("%d",10));
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }
Do you know null pointer?
Explain a pre-processor and its advantages.
What is the purpose of ftell?