Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

List some of the dynamic data structures in C?

0 Answers  


What is #define in c?

0 Answers  


Write any data structure program (stack implementation)

1 Answers   HTC,


Why does everyone say not to use gets?

0 Answers  


How to write a code for reverse of string without using string functions?

0 Answers   TCS,


What are the advantages of using linked list for tree construction?

0 Answers  


what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }

1 Answers  


main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }

1 Answers   Accenture, Vector,


what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1

0 Answers  


what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā€œ %d\nā€,sum); } what is the difference between a=10 and a=010??

3 Answers   Oracle,


Where in memory are my variables stored?

0 Answers  


What is the easiest sorting method to use?

0 Answers  


Categories