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 do we swap or interchange any 2 numbers without using Temporary variable...Anybody can pls answer it.. Thanks in Advance
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
#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?
What are keywords c?
What is the use of a ‘’ character?
Write a program to find given number is even or odd without using any control statement.
i have a written test for microland please give me test pattern
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
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.
What is wrong with this initialization?
What is a Genralised LInked List?? Please give a detailed explation of it..
what is function pointer?