write a “Hello World” program in “c” without using a semicolon?
Answer Posted / manish
int main()
{
if(printf("Hello World"))
}
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is const and volatile in c?
How can I manipulate strings of multibyte characters?
How macro execution is faster than function ?
What are loops c?
I need a sort of an approximate strcmp routine?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What is operator promotion?
What is d scanf?
Did c have any year 2000 problems?
Is c language still used?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
What is a buffer in c?
Here is a neat trick for checking whether two strings are equal
Explain the difference between ++u and u++?
What is the 'named constructor idiom'?