Showing posts with label semicolon. Show all posts
Showing posts with label semicolon. Show all posts

Monday, September 22, 2014

A C PROGRAM TO PRINT HELLO WORLD WITHOUT USING SEMICOLON

using if

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



using switch


main()
{
switch(printf("Hello World")){
}}



using while


main()
{
while(!printf("Hello World")){
}}


                                            TRY THIS

Read More..
 
Copyright 2009 Information Blog
Powered By Blogger