Why does not use getgh(); and <conio.h> in c language.
Answers were Sorted based on User's Feedback
Answer / smriti patnaik
because getgh();function is declared and defined in conio.h
header file..
when we want to call the function we call it under conio.h
header file......
| Is This Answer Correct ? | 23 Yes | 11 No |
Answer / suhani
there is no need of conio.h for working of getch()
| Is This Answer Correct ? | 4 Yes | 19 No |
How main function is called in c?
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
What is c definition?
How many ways are there to swap two numbers without using temporary variable? Give the each logic.
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
What is sizeof int in c?
What is typedef struct in c?
Write a pro-gramme to determine whether the number is even or odd?
Which weighs more, a gram of feathers or a gram of gold?
what is the function of void main()?
Where static variables are stored in c?
What are the different types of pointers used in c language?