I was doing this question on spoj

http://www.spoj.pl/problems/HAJIME/ I devised two methods which are these but I am getting wrong answer everytime ? What is wrong with my solution ?

typedef/**/struct{unsigned/**/int/**/aku;char*/**/const/**/soku;}zan;

typedef/**/struct{struct{unsigned/**/int/**/aku;};struct{char*const/**/soku;};}zan;
link|improve this question

65% accept rate
I fixed your formatting. Next time do it yourself. Look at the source code to see how I did it. – Johannes Schaub - litb Feb 10 at 22:20
1  
I'm sorry that this was closed... I'm curious what the other trick for separating tokens is besides the /**/ comment trick. – Michael Burr Feb 11 at 1:13
feedback

closed as not a real question by Borealid, phimuemue, Graeme Perrow, ouah, larsmans Feb 10 at 22:44

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

"basically, you have to use two different tricks to get around the lack of whitespace"

link|improve this answer
but i have used from my point of view two different tricks – uts Feb 10 at 22:22
1  
Probably /**/ counts as a single trick. – sarnold Feb 11 at 2:25
feedback

Your submission should consist of exactly two declarations as described above, separated by whitespace.

I don't see that your member declarations are separated by whitespace. Your second "solution" is wrong because that's invalid C syntax (at least C89/C99).

link|improve this answer
it is still giving wrong answer – uts Feb 10 at 22:26
feedback

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