write a “Hello World” program in “c” without using a semicolon?

Answer Posted / manish

int main()
{
if(printf("Hello World"))
}

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Tell us something about keyword 'auto'.

659


What is the difference between printf and scanf in c?

745


What is quick sort in c?

577


What is difference between union All statement and Union?

628


What is the stack in c?

714






Why is struct padding needed?

625


What is substring in c?

632


What are the advantages of external class?

589


Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.

1011


What are multibyte characters?

639


What is sizeof in c?

565


what is the different bitween abap and abap-hr?

1737


#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

664


What do you mean by dynamic memory allocation in c?

644


Describe the order of precedence with regards to operators in C.

628