write a “Hello World” program in “c” without using a semicolon?
Answer Posted / latiff
int main()
{
if(printf("hello world"))
}
In if statement compiler does not expect semicolon.
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
What are types of preprocessor in c?
What is #include called?
What is the need of structure in c?
Differentiate between Macro and ordinary definition.
Hi can anyone tell what is a start up code?
Why enum is used in c?
i got 75% in all semester am i eligible for your company
Explain logical errors? Compare with syntax errors.
What will the preprocessor do for a program?
What does. int *x[](); means ?
What is the use of sizeof () 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 abstract data structure in c?
What is formal argument?
How can you call a function, given its name as a string?