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

the question is that what you have been doing all these periods (one year gap)

1617


What are dangling pointers? How are dangling pointers different from memory leaks?

623


Can include files be nested?

629


What is static and volatile in c?

781


What is build process in c?

645






Explain how does flowchart help in writing a program?

632


any C program contains only one function, it must be a) void () b) main () c) message () d) abc ()

695


can we implement multi-threads in c.

668


What is difference between array and pointer in c?

540


What is calloc in c?

661


What are the salient features of c languages?

625


How can you be sure that a program follows the ANSI C standard?

1128


Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings

2251


Who developed c language?

642


What is static identifier?

704