vote up 4 vote down star
1

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 understand that macros cannot be expanded recursively, so how would this be accomplished?

Thanks

flag

5 Answers

vote up 2 vote down check

Take a look at the Boost preprocessor library, which allows you to write loops in the preprocessor, and much more.

link|flag
vote up 6 vote down

You use recursive include files. Unfortunately, you can't iterate the loop more than the maximum depth that the preprocessor allows.

It turns out that C++ templates are Turing Complete and can be used in similar ways. Check out Generative Programming

link|flag
vote up 1 vote down

Here's an abuse of the rules that would get it done legally. Write your own C preprocessor. Make it interpret some #pragma directives the way you want.

link|flag
vote up 0 vote down

Not quite what you asked, but checkout these links to a C program that is also a valid makefile and shell script.

The C, make and shell code build upon each other to create a C program (?) which when executed as a shell script will compile itself through the C compiler using a makefile!

A winner in the 2000 obfuscated C contest.

http://www.ioccc.org/2000/tomx.c
http://www.ioccc.org/2000/tomx.hint

link|flag
vote up 0 vote down

I use meta-template programming for this purpose, its fun once you get a hang of it. And very useful at times when used with discretion. Because as mentioned its turing complete, to the point where you can even cause the compiler to get into an infinite loop, or stack-overflow! There is nothing like going to get some coffee just to find your compilation is using up 30+ gigabytes of memory and all the CPU to compile your infinite loop code!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.