answersLogoWhite

0

Can include file be nested

User Avatar

Wiki User

11y ago

Best Answer

Yes, of course. (You should have tested it yourself.)

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Can include file be nested
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does a nested file mean?

A nested file means that the file is under a few different folders, for example if you have a file called readme.txt it could be under the text folder which is under the programs folder. It just means that the file is nested underneath a few different folder layers.


Can include files be nested in c?

Yes, include files can be nested in C and C++. In fact, most library implementations do just that.


What is nested logic?

In Nested Logic a Logic is contained within a Logic. If the Outer Logic is TRUE then the internal Logic is executed. Nested IF, Nested For, Nested While, e.t.c are some examples of Nested Logic in Modern Computer Languages.


Why doesn't C have nested functions?

Nested functions are used in some languages to enclose multiple functions and variables into a container so that individual function and variable are not seen from outside. In,C this can be done by putting such functions in a seperate source file.


When was Nested created?

Nested was created in 1977.


What is adjectives for nest?

feathery


What does attachments mean in an email?

Include a file as part of the email.


What are examples of nested solids?

three examples of nested solids


Is have nested present past future?

"Have nested" is in the present perfect tense.


What is the if statement that appears inside another if statement?

nested if Statement


How do you include a file in PHP?

To include a file in PHP all you need to do is use the include() function as I have shown you in the example below. <?php include("filename.php"); ?>


Where you can include a header file in the program?

You can include a file with the #include directive at any place you want to. You just have to consider that the compiler will see the total source file as if you had copied the contents of each include file at the point where you included it, and it will parse and process the total source file accordingly. That said, header files, a subset of included files, are generally #include'd at the top of the source file. Again, it all depends on what is in the include file.