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 |
#include<stdio.h> main() {int i=1;j=1; for(;;) {if(i>5) break; else j+=1; printf("\n%d",j) i+=j; } }
Find greatest of two numbers using macro
Explain bit masking in c?
printf("%d",(printf("Hello")); What it returns?
What is data structure in c and its types?
what is difference between null and nul in c language
How can I use a preprocessorif expression to ?
write a program that will print %d in the output screen??
How a string is stored in c?
What is the size of enum in c?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
What is volatile keyword in c?