write a “Hello World” program in “c” without using a semicolon?
Answer Posted / saranya
void main()
{
if(printf("hello world"))
{
}
}
| Is This Answer Correct ? | 19 Yes | 1 No |
Post New Answer View All Answers
In a byte, what is the maximum decimal number that you can accommodate?
a construct the"else" part of "if" statement contains anoth "if else" statement is called a) if-else b) else-if-else c) if-else-if-else d) chain if/if-else-if
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
How to implement a packet in C
Is c dynamically typed?
Can a pointer be null?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Can two or more operators such as and be combined in a single line of program code?
Is exit(status) truly equivalent to returning the same status from main?
Where define directive used?
What is the use of header?
Explain 'far' and 'near' pointers in c.
Is there a built-in function in C that can be used for sorting data?
How macro execution is faster than function ?
What is time null in c?