Why is conio.h not required when we save a file as .c and
use clrscr() or getch() ?
Answers were Sorted based on User's Feedback
Answer / kuldeep yadav
not only conio.h , also stdio.h we dont need while saving a
C program with the extension '.c'... but in recent turbo C
or borland C compilers only it's allowing , it may be to
reduce the time of typing these files to include rather
getting automatically included.....
| Is This Answer Correct ? | 6 Yes | 1 No |
not only conio.h , also stdio.h we dont need while saving a
C program with the extension '.c'... but in recent turbo C
or borland C compilers only it's allowing , it may be to
reduce the time of typing these files to include rather
getting automatically included.....
and even we can type main() instead of void main() , it is
accepting with the warning.............
thank u
| Is This Answer Correct ? | 5 Yes | 3 No |
how can make variable not in registers
Why main is not a keyword in c?
char ch="{'H','I',0};printf("%s",ch);what is output
write a program which will count occurance of a day between two dates.
What is external and internal variables What is dynamic memory allocation what is storage classes in C
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
What is the output of printf("%d", printf("Hello"));?
What are the preprocessors?
formula to convert 2500mmh2o into m3/hr
What is the difference between NULL and NUL?