print a "hello" word without using printf n puts in c language
Answer Posted / prince
write(1, "Hello World", 11);
| Is This Answer Correct ? | 11 Yes | 10 No |
Post New Answer View All Answers
What is the advantage of c?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
What is bubble sort in c?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
How do you define structure?
For what purpose null pointer used?
How can I read/write structures from/to data files?
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
What should malloc(0) do?
What are valid operations on pointers?
Why doesn't C support function overloading?
How can I make sure that my program is the only one accessing a file?
How do you use a 'Local Block'?
Explain 'far' and 'near' pointers in c.
Why c is called top down?