Skip to main content
GameDev.net gamedev.net
🔒 Locked

Preprocessor on same line as code

Started by 3DModelerMan Jul 22, 2012 at 1:56 AM 6 replies 2.1k views
Original Post
3DModelerMan
3DModelerMan
As an exercise I recently challenged myself to try and write a program in only one line of code. I've come pretty far into it, but one thing bugs me, and doesn't really make it a one liner. When I include iostream it has to have a linebreak. Is there anything in the C++ standard that allows you to put preprocessor statements on the same line as regular code?
zacaj
zacaj
Forward declare everything you use and put the include at the end?
tanzanite7
tanzanite7

Include the contents of the header and expand all the macros into one line?
You mean, create a gigantic one-line file ... several megabytes ... somehow i doubt OP will find it acceptable :/

/me has been hit with a similar problem in the past (macro-based boiler-plate code-gen issues) and i did not find any workarounds, i doubt there is any (besides adding a custom compilation step before preprocessor).
Daaark
Daaark
Why not challenge yourself to do something useful?

1) Including several hundred lines of iostream code into your own isn't a 1 line program. If you are going to do that, you might as well just include an entire program and have your 1 line be Go();

2) 'Lines' is a useless metric. C++ is freeform and lines are just whitespace to be stripped out anyways. Cramming 15 statements into one line doesn't make it a 1 line program. It's just a poorly formatted 15 line program.
Neometron
Neometron
I'm kind of interested in seeing your one liner.

I agree with Daaark that lines are a useless metric. I suppose a better one is exe file size. There are impressive 3d tech demos out on the internet including music and it all fits within 64KB limit.
tanzanite7
tanzanite7
edit: damn, ninja post, this is in response to Daaark's post.

Don't know what OP had in mind, but i think you are missing the point.

It is NOT intended to be useful nor well readable etc. It is a challenge, bonus points if the code does something interesting. Check for example this (at the top of Ken Perlin's homepage).
nobodynews
nobodynews
At least for GCC you can include a file on the command line: link.
C++: A Dialog | C++0x Features: Part1 (lambdas, auto, static_assert) , Part 2 (rvalue references) ,

Topic Locked

This topic has been locked by a moderator. New replies are not allowed.

Sign in to reply to this topic.