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
What is function prototype?
What is dangling pointer in c?
Give me the code of in-order recursive and non-recursive.
What is build process in c?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What is the difference between array and pointer?
What is a program flowchart and how does it help in writing a program?
What is the -> in c?
What is the code in while loop that returns the output of given code?
What is a nested loop?
Explain the use of function toupper() with and example code?
Can the “if” function be used in comparing strings?
How do I use strcmp?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above