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
code for replace tabs with equivalent number of blanks
Is c programming hard?
What is structure padding and packing in c?
Where register variables are stored in c?
What is typeof in c?
What is #define size in c?
What is the modulus operator?
When is a void pointer used?
How can I call a function with an argument list built up at run time?
How can a program be made to print the line number where an error occurs?
What is the advantage of a random access file?
Explain what is #line used for?
What are the types of i/o functions?
What is optimization in c?
What is function what are the types of function?