what is a headerfile?and what will be a program without it
explain nan example?
Answers were Sorted based on User's Feedback
Answer / yyy
header file contains pre defined functions.that are used in
the programme.
header files will have .h as an extension.
eg:stdio.h is a header file which contains input and output
functions like scanf and printf.
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / xyz
headerfile is a library of functions,which the program
refers to and uses required functions to execute the
operation..!
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / vignesh1988i
header file is a one of the important librarary files where our functions which are built in (printf(), scanf(), getche(),getch(),strcpy(), etc etc) would be defined and retrieved for other operations when the functions defined in the header file is called..........
thank u
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / praveen badiger
Header files are predefined function, these are defined in .h extention .if u not used the header file compiler will through an error message..
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / prabu
header file consists of several modules in which the printf
and scanf function can call automatically througyh header file
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / pradeep m.c
headerfile is one includes pre-defined functions n
and definatrions and is a librari of functions,which the
programme refers to and uses required function to
execute operations.
| Is This Answer Correct ? | 0 Yes | 1 No |
Can the curly brackets { } be used to enclose a single line of code?
What are static functions?
How do we print only part of a string in c?
write a C code To reverse a linked list
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
What is the meaning of 2d in c?
why program counter is 16 bit?
What are bit fields? What is their use?
Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0
What are reserved words?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
What does c in a circle mean?