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?

Answer Posted / vidhya lakshmi d

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

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile

1052


What is union and structure in c?

1149


What is a pointer value and address in c?

1057


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

2434


When should the const modifier be used?

1060


How can you find the exact size of a data type in c?

952


What is pointer in c?

1141


What does sizeof function do?

1126


Ow can I insert or delete a line (or record) in the middle of a file?

954


How can I get the current date or time of day in a c program?

1166


Is it valid to address one element beyond the end of an array?

1121


What is size of union in c?

976


Explain how can you avoid including a header more than once?

1041


What is a far pointer in c?

990


Why is c called a structured programming language?

1214