how can i print "hello"

Answers were Sorted based on User's Feedback



how can i print "hello"..

Answer / diwakar prasad singh

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

Is This Answer Correct ?    7 Yes 4 No

how can i print "hello"..

Answer / ajithbalaji

Both r wrong


#include<stdio.h>
#include<conio.h>
void main()
{
printf("\"hello\"");
getch();
}

Is This Answer Correct ?    5 Yes 2 No

how can i print "hello"..

Answer / vijay kumar tiwari

#include<iostream.h>
main()
{
cout<<"hello";
}

Is This Answer Correct ?    3 Yes 4 No

Post New Answer

More C Interview Questions

Why c is called a middle level language?

0 Answers  


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.

0 Answers   Wipro,


How to convert decimal to binary in C using recursion??

4 Answers   HP, IBM,


Q.1 write a program to create binary tree 1 to 16 numbers? Q.2 write a program to creat a binary search tree for the member that is given by user?

0 Answers   Case, IBM,


What are the 4 types of programming language?

0 Answers  






What are the uses of pre-processor directives?

2 Answers  


Why does everyone say not to use scanf? What should I use instead?

0 Answers  


What is the purpose of the statement: strcat (S2, S1)?

0 Answers  


What is a lookup table in c?

0 Answers  


what are non standard function in c

0 Answers  


How many types of operator or there in c?

0 Answers  


write a program to fined second smallest and largest element in a given series of elements (without sorting)

9 Answers   Yahoo,


Categories