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
Write a program to print fibonacci series without using recursion?
What is type qualifiers?
How can I list all of the predefined identifiers?
How can you tell whether two strings are the same?
What is c programing language?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What is wild pointer in c with example?
What do you mean by c what are the main characteristics of c language?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
disply the following menu 1.Disply 2.Copy 3.Append; as per the menu do the file operations 4.Exit
What is assert and when would I use it?
Difference between constant pointer and pointer to a constant.
What is the difference between Printf(..) and sprint(...) ?
How can I handle floating-point exceptions gracefully?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list