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 are data structures in c and how to use them?
Why c is called object oriented language?
Which is an example of a structural homology?
Why enum is used in c?
Do you know pointer in c?
What are the benefits of c language?
Do you know the purpose of 'register' keyword?
What is actual argument?
Why is this loop always executing once?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
Differentiate between calloc and malloc.
What are the advantages of external class?
Is int a keyword in c?
Explain the difference between the local variable and global variable in c?
‘SAVEPOINT’ and ‘ROLLBACK’ is used in oracle database to secure the data comment. Give suitable examples of each with sql command.