I recently heard this was used as an interview question. I suspect there is a very simple answer; I must be over-thinking it.
Can you write Hello World in C without using any semi-colons? If so, how?
|
I recently heard this was used as an interview question. I suspect there is a very simple answer; I must be over-thinking it.
| |||
|
show 5 more comments
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
| |||||||||||||
feedback
|
|
Since One can also argue that by doing If you care to make it more compact, and also discourage any potential
Of course, this is only valid in C89/90. In C99 all functions have to be pre-declared, which makes | |||||||||||||||||
feedback
|
| |||||||||||||||||
feedback
|
|
And here's a semicolonless quine, inspired by this question:
Compile with gcc. | |||||
feedback
|
|
A hack, but there are no semicolons in the source: gcc -DSEMICOLON=; hello.c -o hello
OR Another hack. For microsoft compilers only:
| |||||
feedback
|
|
To be compliant, it should return a status code of 0 to the OS. I like this version:
(answer edited based on comments. Tested under VS 2010 as Win32 Console App) | |||||||||||||||
feedback
|
Sought out answer already provided, but given the question... [sarcasm]
[/sarcasm] I think a lot of interview questions are often very poorly worded. I was once asked, "How many bits are required to represent the number, 32?" I had to ask, "for what range, and is this for integers only?" The interviewer answered that it was for integers and starting from zero, so I said 6. Then he said that was wrong and the correct answer was 5. I told him he was wrong as that would assume the range [1, 32], not [0, 32] which would have 33 unique values and would require 6 bits. I got the job but the interview was silly. Sometimes it seems like they just came up with the question on the spot. | |||||
feedback
|
|
Inspired by I__ and AndreyT, I think this might be the smallest valid answer:
It compiles with gcc and prints out "Hello World". | |||||
feedback
|
|
file name:
file contents:
compile with:
| |||||||||||||||||
feedback
|
| |||||
feedback
|
Unfortunately, that omits the return statement. Some compilers will issue a warning, but it will still compile. The only one that REALLY works and is completely valid at the time of this writing (despite not producing a binary and lacking a | |||||||||||
feedback
|
| |||
|
feedback
|
| |||||
|
feedback
|
while,do while, and probablyswitchin the same way. And maybe abuse the language in other ways as well. That would, however, not make the interview question any more to the point (does the candidate have coding skills) than any other solution. +1 for Georg on this one from me, and the common complain about just having a single voto for a comment right on the mark. – sbi May 2 '10 at 18:51