how can i print "hello".please consider inverted commas as
well.i want to print on console: "hello"
Answer Posted / banavathvishnu
main()
{
printf("%s","\"Hello \"");
}
| Is This Answer Correct ? | 27 Yes | 5 No |
Post New Answer View All Answers
What is use of integral promotions in c?
Explain About fork()?
while loop contains parts a) initialisation, evalution of an expression,increment /decrement b) initialisation, increment/decrement c) condition evalution d) none of the above
What is main return c?
Is it better to use a macro or a function?
What is a void pointer in c?
What is the use of #include in c?
What are different types of operators?
What is a newline escape sequence?
Is it cc or c in a letter?
Explain what is the concatenation operator?
What is the use of a static variable in c?
What should malloc(0) do?
What is main () 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.