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
Can you return null in c?
What is const volatile variable in c?
Write a program to find factorial of a number using recursive function.
How do I send escape sequences to control a terminal or other device?
Which is better pointer or array?
What is a loop?
What are bitwise shift operators in c programming?
write an algorithm to display a square matrix.
What is dynamic dispatch in c++?
How will you write a code for accessing the length of an array without assigning it to another variable?
What are the restrictions of a modulus operator?
code for quick sort?
What is d scanf?
What is volatile c?
What are local static variables?