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 is the difference between macros and inline functions?

Answer Posted / jayapradap a

the way they are handled. Inline functions are parsed by the compiler, whereas macros are expanded by the C++ preprocesso these are The major difference between inline functions and macros

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Difference between goto, long jmp() and setjmp()?

1229


which type of aspect you want from the student.

2205


What is the difference between functions abs() and fabs()?

1207


What is #include cctype?

1176


What is assert and when would I use it?

1061


Why is it important to memset a variable, immediately after allocating memory to it ?

2131


What is difference between stdio h and conio h?

1436


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

1215


What is external variable in c?

1096


Explain what is the purpose of "extern" keyword in a function declaration?

1124


the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b

2752


Explain what is the benefit of using enum to declare a constant?

1130


Describe the steps to insert data into a singly linked list.

1115


Can the sizeof operator be used to tell the size of an array passed to a function?

1173


What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

1222