How to print "Hi World" without using semi colon?
Answer Posted / manoj singh
void main()
{
clrscr();
if(printf(""HI World""))
getch();
}
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
How was c created?
Which header file is used for clrscr?
What is the difference between array and pointer in c?
What is the purpose of sprintf?
What is build process in c?
List some of the dynamic data structures in C?
Differentiate fundamental data types and derived data types in C.
What is a structural principle?
What is sizeof c?
Why is it usually a bad idea to use gets()? Suggest a workaround.
In C programming, what command or code can be used to determine if a number of odd or even?
What is the use of the function in c?
What are the primitive data types in c?
What is wrong with this program statement? void = 10;
Do array subscripts always start with zero?