answersLogoWhite

0

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

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Can you have nested header files in C?

Yes.


What is another name for an include file in c program?

Include files are also known as header files.


Why is it necessary to include header files in C?

It isn't necessary to include header files in C. However, without the functionality provided by some header files, your program wouldn't be able to do very much that is useful.


Need of preprosser in c language?

to include the header files.


Header files used in c programs usually found in?

Directories, like /usr/include or C:\MYCOMPILER\INCLUDE


What are the common header files use in C programming?

# include <stdio.h> # include <conio.h> # include <stdlib.h> # include <string.h>


What is nested class in c plus plus?

s.


Where are the C header files in Linux?

The C header files are in the same place as other Unix and Unix-like systems: /usr/include if you installed the compiler.


How do you include header files in c programmes?

#include "insertthefilenamehere"Its depend on your editor which editor you follow, If you are executing your program in Borland C\C++ then u can declare like this also#include#includeRegards...Mack Dsoza


Which number of header files available in c?

Just go to your compiler's include directory, and count the files, there can be dozens of them (Or hundreds. Or more.)


Write a c program to sort three integer numbers using nested if statement?

// HI THIS IS MAYANK PATEL /*C Program to find Maximum of 3 nos. using Nested if*/ #include<stdio.h> #include<conio.h> void main() { int a,b,c; // clrscr(); printf("Enter three number\n\n"); scanf("d%d",&a,&b,&c); if(a>b) { if(a>c) { printf("\n a is maximum"); } else { printf("\n c is maximum"); } } else { if(b>c) { printf("\n b is maximum"); } else { printf("\n c is maximum"); } } getch(); }


What is the definition of 'nested' in C programming?

In C a structure within a structure is called nested. For example, you can embed a while loop in another while loop or for loop in a for loop or an if statement in another if statement.