GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Placement Papers  >  TCS  >  C

 Print  |  
Question:  Write "hello world program" without using any semicolon in C



August 08, 2008 10:50:27 #2
 manishkrmishra   Member Since: January 2007    Total Comments: 2 

RE: Write "hello world program" without using any semicolon in C
 
#include <stdio.h>
void main()
{
 if(printf("Hello world"))
{
}
}
     

 

Back To Question