Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8828487
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T07:37:01+00:00 2026-06-14T07:37:01+00:00

Possible Duplicate: Inline functions vs Preprocessor macros I want to know the difference between

  • 0

Possible Duplicate:
Inline functions vs Preprocessor macros

I want to know the difference between the inline function and macro function.

1) is inline function is the same of macro function ?

2) I know that both are not called but they are replaced by its code in the compilation phase. is not?

3) If there is difference, Could you specify it?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T07:37:02+00:00Added an answer on June 14, 2026 at 7:37 am

    Inline replaces a call to a function with the body of the function, however, inline is just a request to the compiler that could be ignored (you could still pass some flags to the compiler to force inline or use always_inline attribute with gcc).

    A macro on the other hand, is expanded by the preprocessor before compilation, so it’s just like text substitution, also macros are not type checked, inline functions are. There’s a comparison in the wiki.

    For the sake of completeness, you could still have some kind of type safety with macros, using gcc’s __typeof__ for example, the following generate almost identical code and both cause warnings if used with the wrong types:

    #define max(a,b) \
      ({ __typeof__ (a) _a = (a); \
          __typeof__ (b) _b = (b); \
        _a > _b ? _a : _b; })
    
    __attribute__((always_inline)) int max(int a, int b) {
       return (a > b ? a : b);
    }
    

    Note: sometimes typeless macros are just what’s needed, for example, have a look at how uthash uses macros to make any C structure hashable without resorting to casts.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Inline functions vs Preprocessor macros Inline functions were introduced in C++ to
Possible Duplicate: Including PHP functions from another file I'm building code that use function
Possible Duplicate: Can a recursive function be inline? I think that recursive function defined
Possible Duplicate: trailing return type using decltype with a variadic template function I want
Possible Duplicate: Inline functions in C#? What is method inlining? i've been debugging code,
Possible Duplicate: Benefits of inline functions in C++? I have a confusion regarding the
Possible Duplicate: Pure virtual functions may not have an inline definition. Why? I've come
Possible Duplicate: Inline functions in C++ What does the compiler do if I completely
Possible Duplicate: A Space between Inline-Block List Items I have a JSFiddle demo of
Possible Duplicate: Speed difference in using inline strings vs concatenation in php5? Note -

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.