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 |
How can I sort more data than will fit in memory?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
2. What does static variable mean?
Mention four important string handling functions in c languages .
how can make variable not in registers
write a program to find the frequency of a number
What is pass by value in c?
What are advantages and disadvantages of recursive calling ?
12 Answers College School Exams Tests, Evolving Systems, HP, Jyoti Ltd, Sage, Wipro,
What is wild pointer in c?
write a program to produce the following output; ABCDEFGFEDCBA ABCDEF FEDCBA ABCDE EDCBA ABCD DCBA ABC CBA AB BA A A
17 Answers ABC, College School Exams Tests,
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
Why doesn't C support function overloading?