how to write hello word without using semicolon at the end?
Answer Posted / ramu gurram
#include<stdio.h>
int main(void)
{
if(printf("hello world"));
return 0;
}
| Is This Answer Correct ? | 4 Yes | 4 No |
Post New Answer View All Answers
Are local variables initialized to zero by default in c?
What is extern c used for?
What is sizeof in c?
Write a Program to accept different goods with the number, price and date of purchase and display them
What is the use of extern in c?
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);
What is typedef?
What does double pointer mean in c?
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
What is an arrays?
Why do we use return in c?
What is the function of multilevel pointer in c?
Differentiate between the = symbol and == symbol?
What is a union?
What is #define in c?