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 a stream in c programming?
Is file a keyword in c?
What is #ifdef ? What is its application?
Why is structure padding done in c?
Process by which one bit pattern in to another by bit wise operation is?
Is there any demerits of using pointer?
Differentiate between functions getch() and getche().
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Explain setjmp()?
How can you find out how much memory is available?
What is an lvalue in c?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
How can this be legal c?
Explain union.
What is the right type to use for boolean values in c? Is there a standard type?