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
How can I read and write comma-delimited text?
When should structures be passed by values or by references?
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.
What is the difference between text and binary modes?
What does the error 'Null Pointer Assignment' mean and what causes this error?
Explain enumerated types in c language?
What are the different types of data structures in c?
How can I do graphics in c?
What is the best way to store flag values in a program?
What is the need of structure in c?
Disadvantages of C language.
What is wrong with this initialization?
How does normalization of huge pointer works?
What is a file descriptor in c?
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.....