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?

link|improve this question

223  
This looks like an awful interview question. – Georg Schölly May 2 '10 at 18:41
3  
Well, I presume you could use while, do while, and probably switch in 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
5  
Yeah, just to clear this up, I wouldn't ever ask this as an interview question. Especially not now that the answer's on SO. :) Thanks all. – jeffamaphone May 2 '10 at 18:53
41  
The correct answer is "why on Earth would you want to?" – bta May 3 '10 at 18:11
2  
Sounds fake. If it is real, the interviewing company shouldn't be a good place to be after all. – Halil Özgür Feb 11 '11 at 13:49
show 5 more comments
feedback

closed as not constructive by meagar, animuson, Wladimir Palant, Andrew Barber, Daniel Fischer May 23 at 1:49

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.

15 Answers

up vote 207 down vote accepted
#include<stdio.h>
main()
{
   if(printf("Hello World \n"))
   {
   }
}
link|improve this answer
So I built this as a win32 console application in VS2005; if it's foo.cpp, then I get a warning about implicit int. If I rename to foo.c, it works just fine, but I too wonder if this is only because I'm using the C++ compiler? – jeffamaphone May 2 '10 at 18:43
14  
@jeffamaphone: C99 would require 'int main()'; C++ already does. C89 did not require that, and MSVC really only supports C89. – Jonathan Leffler May 2 '10 at 18:48
@Jonathan: Good to know. – jeffamaphone May 2 '10 at 18:54
2  
ha, I wouldn't have thought of it, despite the fact I write functions inside of conditional statements routinely. well done – user132014 May 3 '10 at 5:44
feedback

Since printf is a variadic function, any ANSI C solution with printf would require #include <stdio.h> or an explicit "manual" declaration of printf to be correct (the latter would need a semicolon though), since without the declaration of printf the behavior of the program is undefined.

One can also argue that by doing #include <stdio.h> you are implicitly introducing semicolons into your code :)

If you care to make it more compact, and also discourage any potential #include <stdio.h> protesters, use puts instead of printf

main() {
  if (puts("Hello World")) {}
}

Of course, this is only valid in C89/90. In C99 all functions have to be pre-declared, which makes puts no different from printf in that regard.

link|improve this answer
16  
+1 because it completely lack semicolons – SztupY May 2 '10 at 20:19
2  
I like this one too; good point about the #includes. – jeffamaphone May 2 '10 at 23:37
1  
+1, but to pick a nit puts will append a newline on its own, no need to include another in the literal. – jtb Jun 9 '10 at 6:01
1  
@jtb: Good point. Corrected. Thanks. – AndreyT Jun 9 '10 at 7:30
feedback
#error "Hello, World"
link|improve this answer
3  
I like that, but it prints at compile time, not run time. :) – jeffamaphone May 2 '10 at 18:58
18  
@jeffamaphone, yes, I cheated, but you didn't specify it ;-) – Nick Dandoulakis May 2 '10 at 19:01
4  
Compile and run time produce the same result, so +1. – Tim Post May 2 '10 at 19:05
82  
+1: Just for being a smartass! – Donal Fellows May 2 '10 at 20:48
feedback

And here's a semicolonless quine, inspired by this question:

#include <stdio.h>
main(char* a){if(a="#include <stdio.h>%cmain(char* a){if(a=%c%s%c){if(printf(a,10,34,a,34)){}}}"){if(printf(a,10,34,a,34)){}}}

Compile with gcc.

link|improve this answer
8  
Doesn't answer the question but +1 anyway for sheer awesomeness :) – Tom Zych Aug 31 '11 at 1:31
feedback

A hack, but there are no semicolons in the source:

gcc -DSEMICOLON=; hello.c -o hello

int main() { printf("Hello world") SEMICOLON }

OR

Another hack. For microsoft compilers only:

int main() {
__asm
{
mov ax,cs
mov ds,ax
mov ah,9
mov dx, offset Hello
int 21h
xor ax,ax
int 21h
push ax
ret

Hello:
  db "Hello World!",13,10,"$"
}

}
link|improve this answer
3  
+1 for the asm! Nice one! – AdrianMar Jun 5 '11 at 20:24
feedback

To be compliant, it should return a status code of 0 to the OS.

I like this version:

#include<stdio.h>
#include<stdlib.h>
int main(void)
{
   if (printf("Hello World\n"), exit(0), 0) { } 
}

(answer edited based on comments. Tested under VS 2010 as Win32 Console App)

link|improve this answer
compile error: 4: error: void value not ignored as it ought to be – N 1.1 May 3 '10 at 2:50
What compiler is that? I've tried it on several myself, and it worked fine. – abelenky May 3 '10 at 4:58
2  
A C99 program returns 0 to the OS automatically. A C89/90 returns undefined value, but it doesn't make the program non-compliant. – AndreyT May 3 '10 at 13:54
1  
Your code is not valid because exit is a void function. The only reason it might compile (as it apparently did in your case) is that you failed to include the declaration of exit (it is in stdlib.h) and the compiler assumed that it returns int. Needless to say, in such case the behavior of your program is undefined, even if it compiles. In order to make it valid you need to do if (printf(...), exit(0), 0) for example, as GMan did in his deleted answer. But what you have now is plainly invalid. – AndreyT May 3 '10 at 15:55
Indeed, this is what I have as my deleted answer. I deleted it because there is no need to try to return anything in C99. And if you are using C89/90, we might as well go with @AndreyT's answer, which I personally find to be the best answer. – GManNickG May 3 '10 at 18:53
feedback

Can you write Hello World in C without using any semi-colons? If so, how?

Sought out answer already provided, but given the question...

[sarcasm]

int main()
{
   // Hello World
}

[/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.

link|improve this answer
2  
very funny!!!!! – LightWing Jan 13 at 11:28
feedback

Inspired by I__ and AndreyT, I think this might be the smallest valid answer:

main(int x[puts("Hello World")]){}

It compiles with gcc and prints out "Hello World".

link|improve this answer
5  
This one frightens me – luqui Apr 15 at 3:03
feedback

file name:

void main(){if(puts("Hello, World!")){}}

file contents:

A

compile with:

-istdio.h -DA=__FILE__
link|improve this answer
compile error: File truncated – N 1.1 May 3 '10 at 2:45
Seriously? It works here =\ – WTP'-- May 3 '10 at 3:39
2  
@jeffamaphone there's always Mac OS X, which even allows /es in filenames. – WTP'-- May 4 '10 at 14:04
29  
Yeah, but I'm not gonna buy a Mac just for this. – jeffamaphone May 4 '10 at 15:07
3  
main returns an int. – GManNickG Nov 10 '10 at 18:48
show 2 more comments
feedback
int main(int ac, char **av)
{
#define typedef
#define uint8_t a[printf("hello world\n")]
#include <stdint.h>
}
link|improve this answer
4  
downvoter you forgot this one and the one above!! have fun! – Артём Царионов Nov 12 '10 at 16:15
feedback
int
main (void)
{
  while (puts ("Hello World!") && 0)
    {}
}

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 main function in some form) is the one using #error "Hello World". Of course, that's if you're shooting for full C89/C90 compatibility with C99 as well. :P

link|improve this answer
Could you please explain the reason behind including && 0 in the while statement? – susmits May 3 '10 at 10:39
1  
@susmits: The return value of puts is non-zero, so the loop would go on forever otherwise. – GManNickG May 3 '10 at 18:54
1  
And theoretically puts is better than printf in the regard that printf needs to scan for formatting instructions in the string before actually outputting any information whereas puts simply prints the string to stdout. – Dustin May 3 '10 at 20:14
feedback
#include <stdio.h>

int main() {
    switch (printf("Hello, world!\n")) {}
}
link|improve this answer
feedback
#include <stdio.h>
int main(void *HAHA[printf("Hello world!\n")]) {}
link|improve this answer
wow i must be a genius – Артём Царионов Nov 19 '10 at 21:45
@como i am amazing – Артём Царионов May 31 '11 at 15:52
feedback
int main()
{
if((printf("Hello, world!")?0:1)){}

}
link|improve this answer
feedback

Hows this one

int main() {
  if(system("echo hello world")){}
}
link|improve this answer
feedback

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