How to print "Hi World" without using semi colon?
Answer Posted / manoj singh
#include<stdio.h>
void main()
{
clrscr();
if(printf("\"Hi world\""))
while(!kbhit());
}
// sorry for previous answer
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
What is a structure in c language. how to initialise a structure in c?
What does main () mean in c?
What are logical errors and how does it differ from syntax errors?
What is the difference between #include and #include 'file' ?
Why void is used in c?
Explain logical errors? Compare with syntax errors.
What is a far pointer in c?
Is c is a procedural language?
What is the process to generate random numbers in c programming language?
What is d scanf?
What’s a signal? Explain what do I use signals for?
What are valid operations on pointers?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What is the code in while loop that returns the output of given code?
What is string in c language?