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 |
What are different types of pointers?
What is maximum size of array in c?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }
What is class and object in c?
What is structure padding and packing in c?
Explain how do you use a pointer to a function?
What is the difference between int and float?
swap two integer variables without using a third temporary variable?
What's the difference between constant char *p and char * constant p?
What are the keywords in c?
What is variable in c with example?
Whether there can be main inside another main?If so how does it work?