write a “Hello World” program in “c” without using a semicolon?
Answer Posted / rajeev
int main()
{
if(printf("hello world"))
}
For if statement compiler does not expect semi colon.
| Is This Answer Correct ? | 55 Yes | 18 No |
Post New Answer View All Answers
What is the use of a conditional inclusion statement in C?
What is merge sort in c?
What is the auto keyword good for?
where are auto variables stored? What are the characteristics of an auto variable?
Explain the term printf() and scanf() used in c language?
Where are c variables stored in memory?
What is the difference between typedef and #define?
Suggesting that there can be 62 seconds in a minute?
Explain the difference between structs and unions in c?
What is an lvalue in c?
What is the difference between functions getch() and getche()?
Place the #include statement must be written in the program?
What are the types of unary operators?
c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above
Can you return null in c?