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
Discuss the function of conditional operator, size of operator and comma operator with examples.
How many levels deep can include files be nested?
Where define directive used?
What are qualifiers?
Why static is used in c?
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.
What is an endless loop?
Why c is known as a mother language?
What does int main () mean?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is the purpose of macro in C language?
Where are the auto variables stored?
Can variables be declared anywhere in c?
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.
What is structure padding in c?