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


Please Help Members By Posting Answers For Below Questions

count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array

679


Is there any possibility to create customized header file with c programming language?

626


List the variables are used for writing doubly linked list program.

1623


What is main () in c language?

598


What is the best style for code layout in c?

632






What are the functions to open and close the file in c language?

595


write a program to rearrange the array such way that all even elements should come first and next come odd

1763


How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

594


The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none

766


If I have a char * variable pointing to the name of a function ..

653


What is #include stdlib h?

616


What is ponter?

774


What are register variables? What are the advantage of using register variables?

687


What is wrong with this initialization?

593


What is static and auto variables in c?

567