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 |
main() { int i=400,j=300; printf("%d..%d"); }
What is c preprocessor mean?
State the difference between realloc and free.
What is the difference b/w main() in C language and main() in C++.
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
write a progrmm in c language take user interface generate table using for loop?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
second highest number in a given set of numbers
program that accepts amount in figures and print that in words
2 Answers Infosys, Lovely Professional University, Wipro,
can we write a program in c for printf and scanf without using header file stdio.h
Which control loop is recommended if you have to execute set of statements for fixed number of times?
pascal triangle program