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


Please Help Members By Posting Answers For Below Questions

What is the purpose of sprintf?

619


In C language, a variable name cannot contain?

745


#include int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20

1265


In which layer of the network datastructure format change is done

1433


 write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare.  You will then tabulate this information in another file.

1728






Why do we need a structure?

587


What is break in c?

587


What's the right way to use errno?

624


How many levels of indirection in pointers can you have in a single declaration?

595


How can I rethow can I return a sequence of random numbers which dont repeat at all?

704


State the difference between realloc and free.

635


Describe wild pointers in c?

640


How will you divide two numbers in a MACRO?

712


What is #include called?

567


What is the use of printf() and scanf() functions?

633