write a “Hello World” program in “c” without using a semicolon?

Answer Posted / mahesh

#include<stdio.h>
void main()
{
if(printf("Hello World"))
{
}

}

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I read and write comma-delimited text?

864


When should structures be passed by values or by references?

841


Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.

1988


What is the difference between text and binary modes?

900


What does the error 'Null Pointer Assignment' mean and what causes this error?

999


Explain enumerated types in c language?

818


What are the different types of data structures in c?

890


How can I do graphics in c?

801


What is the best way to store flag values in a program?

822


What is the need of structure in c?

814


Disadvantages of C language.

869


What is wrong with this initialization?

801


How does normalization of huge pointer works?

913


What is a file descriptor in c?

846


how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....

1610