print a "hello" word without using printf n puts in c language

Answer Posted / smith

#include<stdio.h>
#include<string.h>
void main()
{
printf("hello");
puts("hello");
}

Is This Answer Correct ?    3 Yes 23 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a stream water?

645


What is the difference between array and structure in c?

563


Differentiate between #include<...> and #include '...'

612


What do you understand by friend-functions? How are they used?

637


Explain the difference between exit() and _exit() function?

627






c language supports bitwise operations, why a) 'c' language is system oriented b) 'c' language is problem oriented c) 'c' language is middle level language d) all the above

606


Why should I use standard library functions instead of writing my own?

665


How main function is called in c?

620


What happens if a header file is included twice?

580


How do we declare variables in c?

561


What is the difference between exit() and _exit() function in c?

572


What are local variables c?

539


Why structure is used in c?

574


what is different between auto and local static? why should we use local static?

633


Explain output of printf("Hello World"-'A'+'B'); ?

967