EXPLAIN #INCLUDE<STDIO.H>
EXPLAIN #INCLUDE<CONIO.H>
Answer Posted / 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 |
Post New Answer View All Answers
What is output redirection?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is auto keyword in c?
Is that possible to store 32768 in an int data type variable?
What are keywords in c with examples?
What are identifiers and keywords in c?
What’s a signal? Explain what do I use signals for?
Write a program to check prime number in c programming?
Do you have any idea how to compare array with pointer in c?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
Where static variables are stored in c?
What is the difference between the = symbol and == symbol?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
What is unsigned int in c?
what are bit fields in c?