answersLogoWhite

0


Best Answer

pata nhn

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between the header file and the preprocessor directive in programming language cpp?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is Hypertext Preprocessor related too?

Hypertext Preprocessor is PHP, it is a server side web programming language.


What is the difference between preprocessor directives and header files?

Preprocessor: All the preprocessor commands written in a high level language are processed by the preprocessor before compiler takes over.Example: "#define MAX_ROWS 10"Preprocessor finds all the places and replaces MAX_ROWS with 10 in the files of the project.Compiler: This software, converts the code written in high-level language into object file. Compiler converts all the files of a given project at once.


How you can use pragma in c language?

a preprocessor directive that is not an specified ISO standard that controls actions of complier and linker


What are preprocessor directives in c programing language?

Preprocessor directives are instructions to the preprocessor which modify the source code prior to compilation. The compiler never sees the directives, it only sees the modified source code. Preprocessor directives can be used to insert the contents of one file into another (#include), define or undefine a macro (#define, #undef), provide conditional compilation (#if, #ifdef, #ifndef, #else, #endif) or provide some implementation-defined operation (#pragma). When the preprocessor acts upon a directive, the directive is not included in the modified file. Where a directive defines a macro, all occurrences of the macro name within the source code are expanded according to the definition. Given that the compiler never sees that definition, this can lead to some obscure error messages where macro expansion results in a compile-time error.


What is ORG in assembly language programming?

ORG is an assembler directive that sets the address of the next generated instruction or data byte.


Short note on structural programming and procedural programming?

There is no difference between procedural programing language & structure programing language.


What is the difference between oriented programming language and high programming language?

Set/subset: Some high level programming languages are object oriented, but not all of them.


What is the full form of php language?

PreProcessor Hyptertext


What is the difference between java and object oriented programming?

java is a programming language/platform that embodies object oriented programming concepts. The question of what is the difference is like asking what is the difference between cars and a Volvo.


Difference between C and C programming language?

The C and C programming languages are one and the same. There is no difference between those languages.


What is an abbreviation for PHP?

PHP termed as Hypertext Preprocessor is one of the core technologies that is a part of the web development services which is considered to be the most popular programming language. Hope that clarifies!Source : Webzesty


What is the difference between static and dynamic programming?

in static programming properties, methods and object have to be declared first, while in dynamic programming they can be created at runtime. This is usually due to the fact that the dynamic programming language is an interpreted language.