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
What are the ways to a null pointer can use in c programming language?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What are the types of macro formats?
What is string concatenation in c?
What does %2f mean in c?
What is the purpose of ftell?
Does * p ++ increment p or what it points to?
What is line in c preprocessor?
How can I ensure that integer arithmetic doesnt overflow?
Is it possible to have a function as a parameter in another function?
If null and 0 are equivalent as null pointer constants, which should I use?
What does a pointer variable always consist of?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
How to write a code for reverse of string without using string functions?
Explain how does flowchart help in writing a program?