How can you print HELLO WORLD without using "semicolon"?
Answer Posted / prakash
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf(hello world))
{
getch();
}
}
| Is This Answer Correct ? | 12 Yes | 9 No |
Post New Answer View All Answers
What is the significance of scope resolution operator?
What are dangling pointers in c?
How is = symbol different from == symbol in c programming?
What is self-referential structure in c programming?
What is keyword with example?
How can I insert or delete a line (or record) in the middle of a file?
Explain how are 16- and 32-bit numbers stored?
What are the 5 types of inheritance in c ++?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
int i=10; printf("%d %d %d", i, i=20, i);
What are the 3 types of structures?
Is anything faster than c?
What are the Advantages of using macro
How does struct work in c?
How do you use a pointer to a function?