answersLogoWhite

0

What is header function definition in c language?

Updated: 8/18/2019
User Avatar

Wiki User

13y ago

Best Answer

No predefined 'header' function in the standard C libraries. There are header files, if that's what you mean.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is header function definition in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which library file contain the definition of stdioh and conioh header file function definition in C language?

Platform dependent, possibly LIBC.LIB or something like that.


Explain about header files used in c language?

list of header files in c and function prototype associated with each file


How do you use cosine in c language?

Include the header file math.h and use the function acos(d)


What is mean by int 86 in c language?

int86 is a function in TurboC, header dos.h, consult the built-in help.


What is included in signal.h header file of C language?

Constants, typedefs, function prototypes. If you want to know more, load it into a text editor.


Need of preprosser in c language?

to include the header files.


What is the user defined function section in C language?

There are no 'sections' in C source, you can define functions anywhere, except inside another function or variable/type definition.


How do you correct the C plus plus programming error missing function header?

You need to #include the header file that contains the missing function's declaration.


What is the function of square root in C programming?

it is sqrt in header math.h


What is headderfile in c language?

Header File in C/C++ are the files which contains the definition of the pre-defined functions, data-types & constants, etc. By adding the header file you reduce your job of defining the same functions which are defined earlier by someone else & you can use those functions/data-types easily.


No of header files are there in 'c' language?

It's 1405 in my Linux box.


Where is the function declare in c plus plus language?

All function interfaces must be declared before they can be used. This is known as a forward declaration and is strictly enforced in C++ (but not in C). To facilitate this, interfaces are typically placed in a header file which can then be included in every source file that requires access to that function. The interface need not be defined (implemented) in the header unless the function is a template function. Typically, implementations are kept separate from interfaces (template function implementations are kept in the header but typically separated from the interface) since the interface contains everything the user needs to know in order to make use of the function.