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...

what type of language is C?

Answer Posted / kiruthiga

c is a general purpose proramming language

Is This Answer Correct ?    18 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can I avoid the abort, retry, fail messages?

1136


What is uint8 in c?

1102


to find the closest pair

2326


Is c weakly typed?

1021


What is the purpose of main( ) in c language?

1138


Can you assign a different address to an array tag?

1168


What is the total generic pointer type?

1157


What is difference between %d and %i in c?

1236


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

1154


What is a double c?

985


Which is better oop or procedural?

1060


What does return 1 means in c?

1069


Explain the bubble sort algorithm.

1064


Which node is more powerful and can handle local information processing or graphics processing?

1322


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); } }

2498