print a "hello" word without using printf n puts in c language
Answer Posted / taz
ch[6]={'h','e','l','l','o','\0'};
i=0;
do
{
putchar(ch[i]);
i++;
}while(ch[i]!=NULL)
| Is This Answer Correct ? | 5 Yes | 8 No |
Post New Answer View All Answers
What is use of #include in c?
List the different types of c tokens?
What are examples of structures?
What are the functions to open and close file in c language?
What is indirection?
What is the difference between %d and %i?
What is the explanation for modular programming?
Differentiate between static and dynamic modeling.
Why is c called c?
What should malloc() do? Return a null pointer or a pointer to 0 bytes?
What is keyword in c?
When would you use a pointer to a function?
What is void main ()?
What is the best organizational structure?
which is an algorithm for sorting in a growing Lexicographic order