Answer Posted / deepti
(.h)means a header file,
and all the header files r included using
#include which is a preprocessor directive
i.e #include<stdio.h>
all the data input/output functions r stored in stdio.h
(where std-standard i-input o-output)
for eg.printf,scanf,putchar,getchar,puts,gets..
#include<conio.h>
(where con-console i-input o-output)
for eg.getch(),clrscr()...
there r many header files for diff purposes
like
#include<math.h> for maths
#include<iostream.h> for streams
etc........
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Can you please compare array with pointer?
How can I open files mentioned on the command line, and parse option flags?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
a c code by using memory allocation for add ,multiply of sprase matrixes
What are the standard predefined macros?
Can we assign string to char pointer?
What are comments and how do you insert it in a C program?
Why c is called object oriented language?
Was 2000 a leap year?
Explain what is wrong in this statement?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is the purpose of scanf() and printf() functions?
What are control structures? What are the different types?
What is a global variable in c?