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 to print "hai" in c?

Answers were Sorted based on User's Feedback



how to print "hai" in c?..

Answer / shabeer v c

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

Is This Answer Correct ?    0 Yes 5 No

how to print "hai" in c?..

Answer / maskfriend

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

Is This Answer Correct ?    1 Yes 7 No

how to print "hai" in c?..

Answer / manju

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

Is This Answer Correct ?    0 Yes 7 No

Post New Answer

More C Interview Questions

#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain

2 Answers  


What are pragmas and what are they good for?

0 Answers  


What is the function of volatile in c language?

0 Answers  


Juxtapose the use of override with new. What is shadowing?

1 Answers  


What is boolean in c?

0 Answers  


Why does notstrcat(string, "!");Work?

0 Answers  


for example user gives input as " 20 or 20.0 or rs 20.0 or 20.00 or rs20 and so .. on " and the output should be stored as " rs.20.00 " in a variable

2 Answers  


how to write a data 10 in address location 0x2000

3 Answers  


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?

1 Answers   IBM,


What are global variables?

0 Answers  


Explain bitwise shift operators?

0 Answers  


Categories