write a “Hello World” program in “c” without using a semicolon?
Answer Posted / prakash.k.r
#include<stdio.h>
void main()
{
if(printf("Hello World"))
{
}
}
printf() fn is available in the stdio header file, and so it
must be loaded. Using int main without return stmt is not
good. If any other solution, plz add your answer.
Is This Answer Correct ? | 16 Yes | 1 No |
Post New Answer View All Answers
How are strings stored in c?
What is getch?
What is main return c?
What is difference between main and void main?
What is the meaning of && in c?
What is file in c language?
Which header file is used for clrscr?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
Why array is used in c?
What is array within structure?
Explain what is the advantage of a random access file?
#include
Why doesn't C support function overloading?
Write a C program to count the number of email on text
can we change the default calling convention in c if yes than how.........?