how to write hello word without using semicolon at the end?

Answer Posted / vikas

int main(void)
{
if(printf("hello world"))
}

Is This Answer Correct ?    18 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Discuss the function of conditional operator, size of operator and comma operator with examples.

905


How many levels deep can include files be nested?

884


Where define directive used?

827


What are qualifiers?

817


Why static is used in c?

841


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.

1307


What is an endless loop?

1059


Why c is known as a mother language?

849


What does int main () mean?

778


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

842


What is the purpose of macro in C language?

865


Where are the auto variables stored?

872


Can variables be declared anywhere in c?

842


Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.

2035


What is structure padding in c?

842