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

define function

Answer Posted / nirmal super star

a fns. is set of instructions that perform a specifide task
which repeatedly occurs in main prgm. .

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the use of #define preprocessor in c?

1082


explain how do you use macro?

1167


What are disadvantages of C language.

1168


What is c language & why it is used?

1122


a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor

1102


Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)

1286


1234554321 1234 4321 123 321 12 21 1 1 12 21 123 321 1234 4321 1234554321

3732


What is #include stdio h?

1130


Can a pointer be null?

1037


State the difference between x3 and x[3].

1118


What are all different types of pointers in c?

1013


Is javascript based on c?

1075


In C programming, how do you insert quote characters (‘ and “) into the output screen?

1539


Why is %d used in c?

1012


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

2512