Tagged Questions
0
votes
1answer
48 views
Include a file multiple times with different macros
I got a file that contains generic methods for working with arrays of different number types (the basic ideas are described in Pseudo-generics in C). The type can be specified by setting a TYPE macro. ...
0
votes
1answer
46 views
Arduino & C: put a function and global variable in external file
This should be a simple problem. I'm trying to split up code into two files within a sketch:
test.ino:
void setup(){}
void loop(){ fn(); }
test.c:
char myChar = '?';
void fn(){ myChar++; }
I've ...
0
votes
1answer
58 views
How to handle multilevel includes in c?
I have second level include that is giving me grief:
Undefined first referenced
symbol in file
function2 /var/tmp//ccAPaWbT.o
...
0
votes
2answers
42 views
Is it possible to include functions from .c file without compiling it?
I am restricted by very specific (and rather senseless...) filing system and I can't create header files or split existing files into files holding only functions and only execution calls. I can only ...
1
vote
1answer
48 views
How to check in cmake whether a given header file is available for C++ project
I am using cmake to manage compilation of my project and it is my first time to use cmake. This tool is very convenient, as there is plethora of scripts and functions which allows to check if all ...
1
vote
3answers
39 views
How to #include a different file each time based on user input?
I have a program which, depending on the user input, #includes one header headerA.h or another headerB.h I expect the header to be there till the end of the program.
headerA and headerB define ...
1
vote
3answers
95 views
Can the pre-processor directives like #include be placed only at the top of the program code?
I have used the #pragma directive inside functions without error or warning(especially #pragma pack()).But the following code shows the warning incompatible implicit declaration of built-in function ...
-3
votes
0answers
37 views
I want to include in C an external header but it tells me it is undefined [closed]
I include the header like this: #include "WELL512a/WELL512a.h" but when i use some of the functions it always gives me the 'undefined reference to ...' error.
1
vote
3answers
73 views
Where is the best place to put the #ifdef __cplusplus extern “C” { #endif
I would like to know where is better to put the
#ifdef __cplusplus
extern "C" {
#endif
in a C header file.
At the beginning or after all the other includes. why ?
-4
votes
1answer
122 views
C programming printf, scanf [closed]
Hi i have written this code, but the output gets like :
How many Miles have u traveled?: (number of times that u display)
How many gallons of gasoline have u consumed?:
and then it just skips ...
2
votes
1answer
44 views
How-to find issues concerning includes - visualize inclusion tree [duplicate]
Scenario
From time to time I get compiler errors in system headers. Currently for example:
c:\Programme\Microsoft Visual Studio 9.0\VC\ce\include\streambuf(55) : error C2143: syntax error : ...
1
vote
0answers
143 views
include .h of c files causes strange “multiple definition” errors?
I work on a project which contains both c source files and c++ ones.
I use code like :
extern "C"
{
#include "init.h"
#include "ParameterGet.h"//ParameterGet.c exists
}
to include c ...
-2
votes
3answers
83 views
Programming assignment says test program will only #include .H file, not .CC file. Can someone clarify [closed]
So I have 2 files I need to turn in, call them: example.cc and example.h
We've been told that their test code will only #include "example.h"
Normally I've always used #include "example.cc" as this ...
3
votes
7answers
113 views
Best practice for using includes in C
I am learning C and I am unsure where to include files. Basically I can do this in .c or in .h files:
Option 1
test.h
int my_func(char **var);
test.c
#include <stdio.h>
#include "test.h"
...
1
vote
3answers
100 views
Howto handle typedefs without include headers in headers
As for working on a larger project, I want to throw in some own types (e.g. myType). The "rushing in"-approach would be, to put those typedefs into an header (lets say myType.h), together with a bunch ...
1
vote
4answers
98 views
Nested include statements for ease of programming c/c++
Good practice aside, I'm attempting to make coding just a tad easier for myself.
Is it possible to make a header file to handle myriad inclusions so that a source can just include the one header?
...
2
votes
1answer
74 views
Can VS2010 show me which header file pulls in a declaration?
I have a header file in a mixed C/C++ project, call it A.h, that uses a type declared in another header file, say X.h. A.h does not include X.h directly, but includes other header files that, ...
0
votes
1answer
87 views
Gwan include scripts
I am currently trying to import some libraries into my Gwan C script. I have read through the manual and am using #pragma include to include the folder that my libraries are in, and then use #pragma ...
0
votes
3answers
77 views
C failed to include
We need to do some enhancement about a downloaded big package.
Assuming the main folder is like
.../proj
and there is
.../proj/Makefile
that will be used to compile the project.
I have added a ...
0
votes
1answer
241 views
fatal error: i2c/smbus.h: No such file or directory?
I tried to compile some code, and I recieved this response while trying to compile:
./smbus.c:26:23: fatal error: i2c/smbus.h: No such file or directory
compilation terminated. ...
-2
votes
2answers
112 views
How to compile library on C using GCC?
I made a library with the files pila.h and pila.c. I compile the file pila.c with gcc pila.c -c and this library works fine. I have tested it.
Then I made another library. This library has the files ...
-2
votes
5answers
74 views
How are you intended to include files in a C project?
I have three files.
trees.h
// a bunch of typedefs and function prototypes
#include <trees.c>
trees.c
// a bunch of function bodies
main.c
#include <trees.h>
This isn't right, because ...
3
votes
3answers
83 views
C - How are c source files incuded without an include statement
I've taken the plunge and am learning C. It's been a pretty good but manageable learning curve coming from a scripting (php, perl) background with only a little bit of C#.
I've used the web-site ...
0
votes
1answer
50 views
How to group common data members/variables in c?
I am writing a code in C which has the following basic structure:
Part A: Starting/Init of the main module, calling of various sub-modules and final compliation of the results from the sub-modules.
...
1
vote
5answers
120 views
Why use object files in C?
When I compile a C program, for ease I've been including the source file for a certain header at the end. So, if main.c includes util.h, util.h will have all the headers util.c will use, outlines ...
0
votes
2answers
215 views
including a c/c++ header file in fortran subroutines
I have a library written in C/C++ which is declared, by its developers, to have a Fortran interface. The interface would be enabled including a header file *.h and calling a classical subroutine. I ...
2
votes
3answers
57 views
How include a directory of headers in C
I would like to know how can I include a directory containig several headers in a C program instead of including all the headers one by one.
2
votes
2answers
122 views
How to include part of file by c++ preprocessor #include
I want to refer some stable library code which is not maintained by me. Actually it is some MFC code snippet.
But, whenever I want to include the code snippet, I have to #include entire file, which ...
1
vote
2answers
80 views
Why don't I have to include my header files when compiling with GCC?
It was my understanding that in order to use a function declared in a header file and defined in a matching source file, said header file must be included before main(). So why does the following ...
1
vote
2answers
109 views
Extern typedefs in C
I have 4 files:
a.h:
typedef struct {
int a;
} A;
b.h:
#include "a.h"
typedef struct {
A a;
int b;
} B;
c.h:
#include "a.h"
typedef struct {
A a;
double c;
} C;
d.c:
...
1
vote
2answers
182 views
Warnings when C header file included in C++ code using C++ compiler
I have some header file that was written for use in a C99 program. This header includes all the function definitions, and is not paired with a source file. I am including it in a C++ code. My C++ ...
-4
votes
2answers
71 views
What is a c include file and guard? [closed]
You must create an include file that contains symbols for DEBUG, TRUE, FALSE, NULL. The include file must contain a guard.--> I have no Idea what is this. When I read it I just see chinese. What is an ...
3
votes
1answer
617 views
How to set include path in xcode project
I am trying to use a C library in an Objective-C Xcode project.
The libraries directory structure is as follows:
-- include/
|-- config.h
|-- lib/
| |-- file1.h
| |-- file2.h
...
2
votes
2answers
73 views
Find header file inclusion path
I am getting a header file included in my program and I want to know how it got included (it is one of the standard include files). It is probably included by a file included by a file included... - ...
0
votes
0answers
40 views
Organisation of mutually #include'ing files in C [closed]
For a personal project, I'm developping in C the implementation of a kind of dynamic language, let's call it "L". I face an issue for the organisation of code "modules" (prog files) holding the ...
-1
votes
3answers
88 views
Counting the number of # includes and # define
I'd like to use C program to find the total number of directives like #include, #define, #ifdef, #typedef, etc. Could you suggest any logic for that? I'm not interested in using any scripting or ...
0
votes
2answers
68 views
Is it possible to #Include in a “diamond inheritance” structure?
I'm trying to make some project in C.
I would like to know if it is possible to make #include from the same file twice, in a way that recalls diamond heritage.
i.e.
in a.c there is #include "a.h"
...
-1
votes
1answer
38 views
Include a file inside Visual project in order to use it [closed]
I would like to include a file name "7zip.exe" inside a visual project in order to use it in my code.
My code:
I scan a folder, for each file use "7zip.exe" to extact data. I don't use(zlib & ...
1
vote
1answer
93 views
How to include .h of C-style in .cpp when global variables are defined in it?
I want to include a global .h file into my .cpp, but it is in C-style.
In it, global variables are defined like:
int a;
int b;
Which causes error.
How can I change it to be ...
3
votes
2answers
192 views
Doxygen include graph
I know there is a doxygen option, to show include graphs, like
a.cpp includes a.h and b.h
a.h includes c.h
c.h includes <unistd.h>
But unistd.h does also include <features.h> for example!
...
1
vote
2answers
137 views
libconfig: syntax error on @include directive
I'vm trying to write app that will work with libconfig. So I've the next part of code:
#include <stdio.h>
#include <stdlib.h>
#include <libconfig.h>
int main(int argc, char ...
2
votes
2answers
141 views
#include file derived from macro __FILE__?
Observe the following program:
#include __FILE__
main(){}
the preprocessor gets stuck in inifite recursion including a copy of itself inside itself and complaining about main() already being ...
-1
votes
1answer
42 views
trouble using make and #include
I have a project that has three files. The main file is called login.c.
I want to #include my other two files using make, but I'm having trouble doing so.
Thanks in advance for any advice!!
here is ...
0
votes
2answers
83 views
#include other C programs
I need to include file_1.c into main.c. In file_1.c, I currently have multiple functions. If I want to call these functions in main.c, what do I need to do? I have #include"file_1.c" in my main ...
4
votes
2answers
129 views
Using project directory in include filename
I am developing C++ headers only library, lets call it PROJ. When a library header is including another, it uses:
#include <proj/foo.h>
And compiler (gcc and clang) have -I ...
0
votes
1answer
350 views
OpenCL including cl.h in code::blocks on Windows
Configuration question here, will hopefully help others in the future.
I created a folder, "C:\openCLcode\include\" which has all the necessary files from the Khronos site: ...
1
vote
3answers
449 views
Why I am getting undefined reference to sleep error?
Code:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
struct subscriber {
char phonenumber[20];
char name[50];
float amount;
} s;
void addrecords();
void ...
1
vote
3answers
115 views
How can I use variables in multiple files?
I want do define a variable in the header and be able to use it in multiple files.
e.g. have variable a defined somewhere and be able to use/change it in both p1.cpp and p2.cpp
Here is an example ...
1
vote
2answers
115 views
How to remove errors in getmac program in C language?
Please find below the code and the output which I am getting.
My C code is in c:/turboc3/bin directory
and my output macid.txt is in c:/turboc3/disk.
Here is the code which I am compiling
#include ...
3
votes
2answers
46 views
Including Files - Shared Source And Duplicate Names
I have a situation where I am using two libraries which have duplicate header file names. For example timer.h exists in both libraries. I think the normal solution to this would be to explicitly ...

