top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

C: How to Print "hello world" without semi colon using switch?

0 votes
284 views
C: How to Print "hello world" without semi colon using switch?
posted Dec 1, 2016 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
#include<stdio.h>
main()
{
        switch(printf("Hello World\n")) { }
}
answer Dec 2, 2016 by Chirag Gangdev
...