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
What is pointers in c with example?
Why is extern used in c?
What is the difference between typedef and #define?
A SIMPLE PROGRAM OF GRAPHICS AND THEIR OUTPUT I WANT SEE WAHAT OUTOUT OF GRAPHICS PROGRAM
What is getch () for?
Is main is user defined function?
Explain what are reserved words?
Explain what is a program flowchart and explain how does it help in writing a program?
Explain how can I read and write comma-delimited text?
Is there any possibility to create customized header file with c programming language?
What is the default value of local and global variables in c?
write a program to rearrange the array such way that all even elements should come first and next come odd
What do you mean by a local block?
What does the format %10.2 mean when included in a printf statement?
What is variable initialization and why is it important?