EXPLAIN #INCLUDE<STDIO.H>
EXPLAIN #INCLUDE<CONIO.H>
Answers were Sorted based on User's Feedback
Answer / k.naresh
those are called header files
it have some pre compiled functions
in that basis we can use in the program to get
afficient result
stdio.h means that standrad input and output function it having
and then
conio.h means that console input and output function sit having
| Is This Answer Correct ? | 66 Yes | 9 No |
Answer / deepak kumar dhurve
stdio.h => (standard Input Output Header File) generally used for Inonu Output and some standard function used in.
| Is This Answer Correct ? | 11 Yes | 3 No |
Answer / priti ranjan panda
stdio.h => (standard Input Output Header File) generally used for Inonu Output and some standard function used in.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / sevak.yatrik777
<stdio.h> is a standard header which works with any C
compiler which adheres to the C standard.
<conio.h.> is Borland abomination which should be avoided
like the plague as it's non-standard and non-portable.
| Is This Answer Correct ? | 14 Yes | 20 No |
Why we use conio h in c?
Explain the use of #pragma exit?
write a program to create a sparse matrix using dynamic memory allocation.
what is the output for this question: main() { int i=1; printf("%d%d%d",i,i++,++i); }
biggest of two no's with out using if condition statement
what is differnence b/w macro & functions
If you know then define #pragma?
What is the description for syntax errors?
Why is c called "mother" language?
what is the flow of execution in cprogram? ex:printf();,scanf();
Describe the order of precedence with regards to operators in C.
When is a void pointer used?