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


Please Help Members By Posting Answers For Below Questions

Do pointers take up memory?

658


Explain what is operator promotion?

637


Is it possible to initialize a variable at the time it was declared?

757


What is .obj file in c?

648


Is c# a good language?

610






Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58

1119


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

652


1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.

1663


What is a pointer in c?

683


Is calloc better than malloc?

578


What is c system32 taskhostw exe?

592


Why shouldn’t I start variable names with underscores?

625


What is Dynamic memory allocation in C? Name the dynamic allocation functions.

559


What are loops c?

616


What is the purpose of scanf() and printf() functions?

725