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 console in c language?
How can I read in an object file and jump to locations in it?
What is a buffer in c?
Explain what is the difference between far and near ?
What is the difference between break and continue?
what is different between auto and local static? why should we use local static?
Why does everyone say not to use scanf? What should I use instead?
What are the back slash character constants or escape sequence charactersavailable in c?
Explain about block scope in c?
What is c definition?
What is selection sort in c?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
What does emoji p mean?
Explain union.
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?