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
explain what is an endless loop?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Can you subtract pointers from each other? Why would you?
What are pointers? What are stacks and queues?
What is the size of a union variable?
Tell me what are bitwise shift operators?
What are the application of void data type in c?
What are variables c?
Why void main is used in c?
How do you determine whether to use a stream function or a low-level function?
How can I read and write comma-delimited text?
What are the functions to open and close the file in c language?
how many key words availabel in c a) 28 b) 31 c) 32
Can one function call another?
What does 2n 4c mean?