Sunday, 21 January 2018

Difference Between The Macros And Functions


Difference Between The Macros And Functions



Difference Between The Macros And Functions
Macros are like functions but there is difference between those two .

1. In macro call the processor replaces the macro template with its macro expansion. Where as in function call the control is passed to a function along with certain arguments, some functions are performed in the function and a useful value is returned back from the function.

2. Macros make the program run faster but increases the program size, where as functions make the program smaller and compact. i.e if the macro is used hundred times in the program , the macro expansion goes into source code for hundred times which increases the program size. otherwise if
the  function is used hundred times in the program from different places it takes same amount of space.



3. In the functions  while passing the arguments to a function  and getting back the returned value does take time and slow down the program. where as in macros this problem wont occurs since they have already been expanded and placed in the source code before compilation.

  At the conclusion it is came to know that if the macro is simple it makes a nice shorthand and avoids the overheads  associated with function calls. On the other hand if the program consists of large macro it can be replaced by the  function.

    

Related Posts:

  • GO TO Statement GO TO Statement This Keyword is used when we want to transfer the control to some point in the program which is not in the normal, step by step sequence of a program.  It takes control from one place to another un… Read More
  • Function Declaration and prototype Function Declaration and prototype It is one of the most important feature of ANSI C.A function prototype tells the compiler the type of data returned by the function, the number of arguments the function expects to r… Read More
  • STANDARD LIBRARY FUNCTIONS STANDARD LIBRARY FUNCTIONS Arithmetic Functions: abs --> Returns the absolute value of an integer. cos --> Calculates cosine. cosh --> Calculates hyperbolic cosine. exp --> Raises the exponential e to the xt… Read More
  • Parameter Passing Technique Parameter Passing Technique The parameter passing mechanism refers to the actions taken regarding the parameters when a function is invoked. There are two parameter passing techniques available in C. They are: 1) Call B… Read More
  • Introduction To Functions Introduction To Functions Functions are building blocks of C. The general form of C (User-defined) function is:       Return-type-function-name(parameter list)       parameter declaration &… Read More

0 comments:

Post a Comment