EXPLAIN #INCLUDE<STDIO.H>
EXPLAIN #INCLUDE<CONIO.H>

Answers were Sorted based on User's Feedback



EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>..

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

EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>..

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

EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>..

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

EXPLAIN #INCLUDE<STDIO.H> EXPLAIN #INCLUDE<CONIO.H>..

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

Post New Answer

More C Interview Questions

How do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance

8 Answers  


a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21

4 Answers   TCS,


#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?

1 Answers   Groupon,


What are keywords c?

0 Answers  


What is the use of a ‘’ character?

0 Answers  


Write a program to find given number is even or odd without using any control statement.

2 Answers  


i have a written test for microland please give me test pattern

0 Answers   Microland,


if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0

0 Answers  


Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 5 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.

1 Answers  


What is wrong with this initialization?

0 Answers  


What is a Genralised LInked List?? Please give a detailed explation of it..

1 Answers  


what is function pointer?

2 Answers   Wipro,


Categories