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 are the types of pointers in c?

543


Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.

844


Describe dynamic data structure in c programming language?

614


Process by which one bit pattern in to another by bit wise operation is?

626


what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;

2045






What are the standard predefined macros?

647


What are loops c?

632


What do you mean by keywords in c?

641


What is the difference between void main and main in c?

638


What are identifiers c?

576


What is the difference between a function and a method in c?

573


How do I send escape sequences to control a terminal or other device?

624


write a program to find the given number is prime or not

3869


What are the string functions? List some string functions available in c.

615


I came across some code that puts a (void) cast before each call to printf. Why?

689