Why does not use getgh(); and <conio.h> in c language.
Answer Posted / suhani
there is no need of conio.h for working of getch()
| Is This Answer Correct ? | 4 Yes | 19 No |
Post New Answer View All Answers
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
What are the functions to open and close file in c language?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
How do you do dynamic memory allocation in C applications?
When is a “switch” statement preferable over an “if” statement?
Why c is called object oriented language?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
What is the meaning of c in c language?
What is the difference between local variable and global variable in c?
What does %p mean?
Why is %d used in c?
What is use of pointer?
What is abstract data structure in c?
What functions are used for dynamic memory allocation in c language?