answersLogoWhite

0

What is headerfile?

User Avatar

Anonymous

15y ago
Updated: 8/16/2019

who hold the header information is called headerfile.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Can you write a c program without using headerfile?

Yes, but if you intend to do any useful work and call any library functions, you will need to know their prototypes in order to call them. That's one of the values of the headerfile.


What is programming syntax?

programming syntax is defined as a predefined pattern in which the program is written. for example:- the programming syntax in c is as: #include<headerfile or prototype> as per need. global declaration. main function or(void main) { body of coding; //comments } user defined functions() { coding; //comments }


How do you find angles of pieces of a twelve sided object?

The name of a 12 sided figure is "Dodecagon" meaning 2+10.I will give you the angles for 12 sided object.Center angle is 30 degreesMiter angle is 75 degreesBevel angle is 15 degreesTo cut wood on a Miter saw to make a 12 sided object, the 15 degree angle is what you want to use. If you want to figure out how mathematically, here is 2 instructional sites to help:* http://www.iit.edu/~smile/ma9304.html Another site for comparison:* http://www.glencoe.com/sec/math/studytools/cgi-bin/msgQuiz.php4?isbn=0-07-829633-1&chapter=10&lesson=7&headerFile=4&state=


How can you create a headerfile in a c?

Create the header file as a .h file in the same way you create a source file, .c and place it in the same directory as the .c files. To incorporate it, use the... #include "my_header_file.h" ... directive. Note that there are double quotes instead of greater/less signs. This tells the compiler to look first in the source directory.