print a "hello" word without using printf n puts in c language
Answer Posted / ricky
fputs("Hello",stdout)
| Is This Answer Correct ? | 4 Yes | 10 No |
Post New Answer View All Answers
How can my program discover the complete pathname to the executable from which it was invoked?
What is meant by operator precedence?
What are the types of data structures in c?
What are global variables and how do you declare them?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
What is a sequential access file?
How is a structure member accessed?
What are the two types of structure?
What is time null in c?
Explain how do I determine whether a character is numeric, alphabetic, and so on?
How can I split up a string into whitespace-separated fields?
What is derived datatype in c?
Explain function?
Why do we need volatile in c?
What does the file stdio.h contain?