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 610209
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T17:39:00+00:00 2026-05-13T17:39:00+00:00

What error is thrown when macro and function conflict in C arises? Is it

  • 0

What error is thrown when macro and function conflict in C arises?
Is it a macro processor error or does this error occur due to some language violation?

For example, in this code:

#include <stdio.h>
#define MAX(i, j) (i>j)? i : j

int MAX(int i, int j){
  return (i>j) ? i : j;
}

int main(){
  int max = MAX(5, 7);
  printf("%d",max);
  return 0;
}

The program throws a compile time error. But I don’t understand whether it was some language violation or macro expansion error or something else.

  • 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-05-13T17:39:01+00:00Added an answer on May 13, 2026 at 5:39 pm

    During the preprocessing phase the code gets converted to :

    int (int i>int j)? int i : int j{
      return (i>j) ? i : j;
    }
    
    int main(){
      int max = (5>7)? 5 : 7;
      printf("%d",max);
      return 0;
    }
    

    …which, as anyone can tell, is an illegal C code.

    (With gcc you could use an -E option to see the preprocessed version of the file.)

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

Sidebar

Related Questions

This is the error that is thrown by our automated build suite on Windows
This has me thrown for a loop: $s = ERROR: 5 - [RecordN...blah blah
I'm having a weird error thrown when I try to use @Secured or @PreAuthorize
Argument exception error is thrown at the following code. It's a simple code but
My application terminates when an error is thrown in OnNext by an observer when
First off I run my applications with exceptions thrown on any error (handled or
i have about 20 possible exception messages that i want thrown when an error
I have this code that uses the USE_CONVERSION macro in a C++ project... I
I am getting an error thrown when I launch my Xcode 3.2 all of
I'm getting the following error thrown in a test of mine: unknown file: error:

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.