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
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What does %p mean c?
How do I convert a string to all upper or lower case?
Which is best linux os?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
program for reversing a selected line word by word when multiple lines are given without using strrev
How can you call a function, given its name as a string?
Why shouldn’t I start variable names with underscores?
How can I read/write structures from/to data files?
What is a nested loop?
How is a pointer variable declared?
Why does everyone say not to use gets?
Why dont c comments nest?
What is structure of c program?