How to print "Hi World" without using semi colon?

Answer Posted / saravana kumar

#include<stdio.h>
void main()
{
if(printf("Hi World"))
}

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does sizeof function do?

614


how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12

653


Can you tell me how to check whether a linked list is circular?

772


What is function prototype in c language?

617


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

636






What is nested structure in c?

614


Explain what is the most efficient way to store flag values?

700


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

665


1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures

2742


How can I get back to the interactive keyboard if stdin is redirected?

670


Multiply an Integer Number by 2 Without Using Multiplication Operator

320


Which control loop is recommended if you have to execute set of statements for fixed number of times?

809


what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?

1906


write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34

1630


What are the header files used in c language?

589