Tagged Questions
1
vote
0answers
136 views
how to test a static library project with codeblocks and target definition
I have a static library project and now i want to test some functions. To achive my goal i added a new target of type console, because when i try to "run" my library i get right the message "...select ...
1
vote
2answers
217 views
Does every large project include a Lisp interpreter? [closed]
I had the impression that there was a paper or article somewhere that claimed every sufficiently large project (not written in a Lisp variant) contained a poorly implemented Lisp interpreter. Google ...
1
vote
4answers
189 views
What are some ways to understand a new C/C++ source code base? [closed]
I'm taking over a new C/C++ code repository with 200+ files.
What's the best way to quickly understand a new codebase? For example, by visualizing module dependencies.
3
votes
2answers
781 views
Multi-pass C preprocessor
Is it remotely sane to apply the C preprocessor to the same codebase multiple times (specifically, twice in sequence?)
For instance, having declarations such as the following:
##define DECLARE(FILE) ...
3
votes
3answers
1k views
Maintain C projects in Visual Studio 2010?
Do you know of any extension (desired free) for VS (or VCPP) 10 that adds C projects productivity (i.e. templates, headers control, syntax highlighting etc.)?
Thanks
6
votes
5answers
2k views
File and Folder structure of a App/Project based in C
What would be the general structure of a App/Project based in C Programming language.
libs,
includes,
header files.
etc etc.
What would be the class structure. (in OOps) need to be scalable and ...
0
votes
3answers
110 views
Problem with building project in C
I am doing a project in C and I have a problem with building it. It is:
I have two separate sub systems[A and B] in my project that use the functionality of yet another sub system[C]. To do this, ...
32
votes
10answers
8k views
How should I structure complex projects in C?
I have little more than beginner-level C skills and would like to know if there are any de facto "standards" to structure a somewhat complex application in C. Even GUI based ones.
I have been always ...
10
votes
5answers
2k views
Sonar : any feedback?
I am currently doing a little study over Sonar and (why not) other tools to manage code quality.
I did not found the documentation much clear nor extended and I have some questions.
Does somebody ...