write a “Hello World” program in “c” without using a semicolon?
Answer Posted / saranya
int main()
{
if(printf("Hello world"))
{
}
}
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
What are the uses of a pointer?
Difference between MAC vs. IP Addressing
What is a string?
What is typedef?
What is difference between Structure and Unions?
Write a program with dynamically allocation of variable.
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is the difference between ‘g’ and “g” in C?
Can you please explain the difference between exit() and _exit() function?
Explain what are the advantages and disadvantages of a heap?
What is a stream water?
What is the mean of function?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What is the difference between %d and %i?
Why do we use int main instead of void main in c?