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
How many identifiers are there in c?
What does. int *x[](); means ?
Do pointers take up memory?
What are the properties of union in c?
What is the difference between single charater constant and string constant?
What is calloc malloc realloc in c?
How do you convert strings to numbers in C?
What is the difference between exit() and _exit() function?
What the different types of arrays in c?
How can I access an I o board directly?
What is null in c?
Where is volatile variable stored?
What is the difference between array and structure in c?
What is a pointer variable in c language?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. The Logic should be written in Data Structures?