Tagged Questions

Program for transforming input file to output file according some rules.

learn more… | top users | synonyms (4)

160
votes
73answers
20k views

What is the worst real-world macros/pre-processor abuse you've ever come across? [closed]

What is the worst real-world macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)? Please add a short snippet or story if it is really entertaining. The goal ...
55
votes
10answers
13k views

“No newline at end of file” compiler warning

What is the reason for the following warning in some C++ compilers? No newline at end of file Why should I have an empty line at the end of a source/header file?
51
votes
11answers
1k views

Managing highly repetitive code and documentation in Java

Highly repetitive code is generally a bad thing, and there are design patterns that can help minimize this. However, sometimes it's simply inevitable due to the constraints of the language itself. ...
36
votes
42answers
5k views

When are C++ macros beneficial?

The C preprocessor is justifiably feared and shunned by the C++ community. In-lined functions, consts and templates are usually a safer and superior alternative to a #define. The following macro: ...
32
votes
12answers
12k views

Compile, Build or Archive problems with Xcode 4 (and dependancies)

This question has evolved over the past several weeks to cover more general issues with xcode4 (and upgrading projects form older xcodes). However many of the issues can be solved by following the ...
32
votes
7answers
26k views

How to define a preprocessor symbol in Xcode

Is it possible to set a symbol for conditional compilation by setting up properties in an Xcode project? My aim is to to create a symbol that is available to all files, without having to use ...
29
votes
6answers
9k views

C/C++ source file after preprocessing

Let's say I have a source file with many preprocessor directives . Is it possible to see how it looks after the preprocessor is done with it ?
27
votes
3answers
593 views

What does the tilde (~) in macros mean?

Seen on this site, the code shows macro invocations using a tilde in parentheses: HAS_COMMA(_TRIGGER_PARENTHESIS_ __VA_ARGS__ (~)) // ^^^ What does it mean ...
23
votes
2answers
3k views

GCC dump preprocessor defines

Is there a way for gcc/g++ to dump its preprocessor defines from the command line? I mean things like __GNUC__, __STDC__, and so on.
22
votes
2answers
2k views

How, exactly, does the double-stringize trick work?

At least some C preprocessors let you stringize the value of a macro, rather than its name, by passing it through one function-like macro to another that stringizes it: #define STR1(x) #x #define ...
21
votes
4answers
782 views

Why is this C or C++ macro not expanded by the preprocessor?

Can someone points me the problem in the code when compiled with gcc 4.1.0. #define X 10 int main() { double a = 1e-X; return 0; } I am getting error:Exponent has no digits. When i replace X ...
20
votes
8answers
755 views

Why would someone use #define to define constants?

It's simple question but why would someone use #define to define constants? What's the difference between #define sum 1 and const int sum = 1; Thanks in advance`
20
votes
12answers
19k views

Easy way to use variables of enum types as string in C?

Here's what I am trying to do: typedef enum { ONE, TWO, THREE } Numbers; I am trying to write a function that would do a switch case similar to the following: char num_str[10]; int ...
19
votes
3answers
2k views

Functional programming in C with macro “Higher Order Function” generators

Pay attention carefully because this is a hell of a question ;-) I want to use template functions for generic collection actions (like search, foreach, etc.) in C while maintaining compiler static ...
18
votes
5answers
1k views

C/C++ line number

In the sake of debugging purposes, can I get the line number in C/C++ compilers? (standard way or specific ways for certain compilers) e.g if(!Logical) printf("Not logical value at line number ...
17
votes
3answers
468 views

What is the difference between a C++ preprocessor macro with no arguments, and one with zero arguments

Is there any reason to prefer #define MY_MACRO() ..stuff.. to #define MY_MACRO ..stuff.. Don't use macros is not a valid answer :) Thank you as usual!
17
votes
7answers
7k views

C #define macro for debug printing

Trying to create a macro which can be used for print debug messages when DEBUG is defined, like the following pseudo code: #define DEBUG 1 #define debug_print(args ...) if (DEBUG) fprintf(stderr, ...
17
votes
6answers
14k views

Include CSS or Javascript file for specific node in Drupal 6

What is the best method for including a CSS or Javascript file for a specific node in Drupal 6. I want to create a page on my site that has a little javascript application running, so the CSS and ...
16
votes
2answers
5k views

C preprocessor and concatenation

I am trying to write a code, where name of functions are dependent on the value of a certain macro variable. To be specific, I am trying to write a macro like this: #define VARIABLE 3 #define ...
15
votes
6answers
1k views

C++: Can a macro expand “abc” into 'a', 'b', 'c'?

I've written a variadic template that accepts a variable number of char parameters, i.e. template <char... Chars> struct Foo; I was just wondering if there were any macro tricks that would ...
15
votes
8answers
830 views

What exactly does an #if 0 … #endif block do?

In C/C++ What happens to code placed between an #if 0/#endif block? #if 0 //Code goes here #endif Does the code simply get skipped and therefore does not get executed?
15
votes
6answers
9k views

C++ preprocessor __VA_ARGS__ number of arguments

Simple question for which I could not find answer on the net. In variadic argument macros, how to find the number of arguments? I am okay with boost preprocessor, if it has the solution. If it makes ...
15
votes
6answers
4k views

Variadic recursive preprocessor macros - is it possible?

I've run into a little theoretical problem. In a piece of code I'm maintaining there's a set of macros like #define MAX_OF_2(a, b) (a) > (b) ? (a) : (b) #define MAX_OF_3(a, b, c) ...
15
votes
15answers
6k views

Difference between Enum and Define Statements

What's the difference between using a define statement and an enum statement in C/C++? (and is there any difference when using them with either C or C++?) For example, when should one use enum ...
14
votes
2answers
349 views

How to expand/“preprocess” c++ template code

To properly debug complex macros in c++ I usually run the preprocessor on them in order to see exactly what the resulting code looks like. Is there a similar way to "preprocess" template code?
14
votes
4answers
2k views

Can you make custom operators in C++?

Is it possible to make a custom operator so you can do things like this? if ("Hello, world!" contains "Hello") ... Note: this is a separate question from "Is it a good idea to..." ;)
14
votes
10answers
19k views

How can I detect the operating system in C/C++?

I would like to detect whether the OS I'm compiling on is Windows. Is there a simple macro I can check to verify that?
13
votes
11answers
439 views

Why other languages don't support something similar to preprocessor directives like C and its descendant?

I wonder why other languages do not support this feature. What I can understand that C / C++ code is platform dependent so to make it work (compile and execute) across various platform, is achieved by ...
13
votes
1answer
9k views

How do I use theme preprocessor functions for my own templates?

I have several .tpl.php files for nodes, CCK fields, and Views theming. These template files have a lot of logic in them to move things around, strip links, create new links, etc. I understand that ...
13
votes
5answers
4k views

Conditional compilation depending on the framework version in C#

Are there any preprocessor symbols which allow something like #if CLR_AT_LEAST_3.5 // use ReaderWriterLockSlim #else // use ReaderWriterLock #endif or some other way to do this?
12
votes
3answers
159 views

Old C compiler chokes on #ifndef #define

I am trying to port some relatively modern C code to an older compiler. This compiler (DICE), it seems, chokes on the first header file and the first occurrence of this idiom: #ifndef SOMETHING ...
12
votes
9answers
730 views

sizeof() is not executed by preprocessor

#if sizeof(int) != 4 /* do something */ Using sizeof inside #if doesn't work while inside #define it works, why? #define size(x) sizeof(x)/sizeof(x[0]) /*works*/
12
votes
5answers
307 views

__FILE__ In .h what does it resolve to

Is there a specification on how the __FILE__ macro will be expanded if it is in a .h? If I define in foo.h #define MYFILE __FILE__ And include it in foo.c #includes "foo.h" void main(){ ...
12
votes
1answer
549 views

Why are argument substitutions not replaced during rescanning?

Consider the following macro definitions and invocation: #define x x[0] #define y(arg) arg y(x) This invocation expands to x[0] (tested on Visual C++ 2010, g++ 4.1, mcpp 2.7.2, and Wave). Why? ...
12
votes
5answers
3k views

C Preprocessor directives and boolean operators

I searched the site but did not find the answer I was looking for so here is a really quick question. I am trying to do something like that : #ifdef _WIN32 || _WIN64 #include <conio.h> ...
12
votes
15answers
2k views

What are C macros useful for?

I have written a little bit of C, and I can read it well enough to get a general idea of what it is doing, but every time I have encountered a macro it has thrown me completely. I end up having to ...
12
votes
2answers
494 views

What is the point of saying “#define FOO FOO” in C?

I came across some C code where the author uses the following idiom all over the place: typedef __int32 FOO_INT32; #define FOO_INT32 FOO_INT32 What is the point of doing this? Shouldn't the ...
12
votes
7answers
1k views

When can you omit the file extension in an #include directive?

I'm playing around with gmock and noticed it contains this line: #include <tuple> I would have expected tuple.h. When is it okay to exclude the extension, and does it give the directive a ...
12
votes
10answers
3k views

C# Preprocessor

While the C# spec does include a pre-processor and basic directives (#define, #if, etc), the language does not have the same flexible pre-processor found in languages such as C/C++. I believe the lack ...
12
votes
11answers
5k views

How do you create a debug only function that takes a variable argument list? Like printf()

I'd like to make a debug logging function with the same parameters as printf. But one that can be removed by the pre-processor during optimized builds. For example: Debug_Print("Warning: value %d ...
11
votes
4answers
161 views

How do I generate an integer from a string literal at compile-time?

In C++, is it possible to generate an integer from a string literal using only compile-time facilities ? For instance, if all we have is the literal "6", is there some way to use it as a template ...
11
votes
2answers
310 views

Is a C++ preprocessor identical to a C preprocessor?

I am wondering how different the preprocessors for C++ and C are. The reason for the question is this question on a preprocessor-specific question where the paragraph of the standard that addresses ...
11
votes
2answers
729 views

Difference between preprocessor directives #if and #ifdef

What is the difference (if any) between the two following preprocessor control statements. #if and #ifdef
11
votes
7answers
7k views

C Macros to create strings

I would like to use C #define to build literal strings at compile time. The string are domains that change for debug, release etc. I would like to some some thing like this: #ifdef __TESTING ...
11
votes
13answers
2k views

Quote needed: Preprocessor usage is bad OO practice

I believe, that the usage of preprocessor directives like #if UsingNetwork is bad OO practice - other coworkers do not. I think, when using an IoC container (e.g. Spring), components can be easily ...
11
votes
7answers
8k views

Writing a while loop in the C preprocessor

I am asking this question from an educational/hacking point of view, (I wouldn't really want to code like this). Is it possible to implement a while loop only using C preprocessor directives. I ...
10
votes
5answers
261 views

Changing a macro at runtime in C

I have a macro defined. But I need to change this value at run time depending on a condition. How can I implement this?
10
votes
2answers
303 views

During C macro expansion, is there a special case for macros that would expand to “/*”?

Here's a relevant example. It's obviously not valid C, but I'm just dealing with the preprocessor here, so the code doesn't actually have to compile. #define IDENTITY(x) x #define PREPEND_ASTERISK(x) ...
10
votes
2answers
3k views

Java Preprocessor

If I have a boolean field like: private static final boolean DEBUG = false; and within my code I have statements like: if(DEBUG) System.err.println("err1"); does the Java preprocessor just get rid ...
10
votes
7answers
1k views

What is a “private header” in C?

I've been learning C recently, and in one of my textbooks I found a reference to a file with the ".r" extension. Now, as you can imagine, googling "r" or "file extension r" is not productive, so I ...

1 2 3 4 5 25