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

What is #include called?

573


Why we use break in c?

556


What are structures and unions? State differencves between them.

619


How are structure passing and returning implemented?

594


Explain what is a pragma?

596






What does c in a circle mean?

587


Why do we need a structure?

595


What is bubble sort in c?

640


Explain About fork()?

653


What is the use of typedef in structure in c?

549


Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent

1660


using only #include and #include Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

1317


Which is the best website to learn c programming?

587


What are the 3 types of structures?

574


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

816