vote up 0 vote down star

how can i define a struct having a constant character and unsigned int , without using any white space , i mean no blank space or new line or tab!!

typedef::struct(unsigned int * a, const char * b) c;

this definition is wrong , as its buggy , and has whitespaces i want to define a struct with unsigned int and constant character without using any white space

flag

48% accept rate
just curious..why no blank spaces or tabs?? – Naveen Jun 8 at 7:30
3  
question makes no sense. – Mitch Wheat Jun 8 at 7:33
as it was there in this qeustion in this tricks to c book !! but i never able to get the answer – mekasperasky Jun 8 at 7:34
Can you tell us what compiler you hope to use? Are you entering some obfuscated code contest or dealing with VERY little storage and you must ship source on board? – Tim Post Jun 8 at 7:36

closed as not a real question by Mehrdad Afshari, Mitch Wheat, Naveen, paxdiablo, John Saunders Jun 8 at 10:32

4 Answers

vote up 9 vote down

Hm, perhaps something like this:

typedef/**/struct{const/**/char/**/c;unsigned/**/u;}nospace;

I used comments /**/ to separate the tokens instead of blanks.

link|flag
+1, nice.. satisfies all the constraints specified in the question..although I don't understand why somebody would like to do it. – Naveen Jun 8 at 8:11
I completely agree :) – Bojan Resnik Jun 8 at 12:40
vote up 6 vote down
#define typdefstruct typedef struct
#define ccharc const char c
#define uinta unsigned int a

typedefstruct{ccharc;uinta;}blah;

the struct line has no spaces, so I suppose that works. Why exactly do you want to do this? Are you practicing for IOCCC or something?

link|flag
vote up 0 vote down

I think you mean char const ? In which case, you are limited only by the parser that your particular compiler is using.

All compilers are not created equal :)

link|flag
vote up 1 vote down

i think the answer is you can't. the program need to be understood by the compiler, which depends on the white space to separate the keywords and variable names. Without the white space, there can be confusion to the compiler.

link|flag

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