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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T23:26:45+00:00 2026-06-14T23:26:45+00:00

I have created a macro for error tracing. Here is a simplified version: #include

  • 0

I have created a macro for error tracing.
Here is a simplified version:

#include <stdio.h>

#define ERR(...)                                 \
    printf("error @ %d\n", __LINE__)

int main()
{
    return ERR(1,               /* line 7 */
               2,               /* line 8 */
               3);              /* line 10 */
}

When executed, it prints:

error @ 10

However, to match the printed line number with grep output (grep -n ERR test.c), I need line number of the ERR string (line 7).

Is such thing even possible? Any ideas?

Additional notes:
the macro should look like a function call (so I can do return ERR(...);).
The compiler is GCC version 4.4.5. C99 + GNU extensions can be used.

  • 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-14T23:26:46+00:00Added an answer on June 14, 2026 at 11:26 pm

    Bases on @cwyang proposition, use macros with mismatched parenthesis in the definition and the coma operator.

    #define ERR (LINEINFO, HANDLEARGS
    #define HANDLEARGS(...) __LINE__)
    #define LINEINFO printf("error @ %d: ", __LINE_)
    
    return ERR(x,
               y,
               z);
    

    will expand to

    return (printf("error @ %d: ", 5), 7);
    

    with gcc.

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

Sidebar

Related Questions

I am getting following error for the Macro I have created to insert Pivot
I have created a macro for excel which will pop up form that contains
I'm having trouble obtaining data with a macro I've created using XSLT. I have
I have a manual list I created in a macro in stata, something like
In Open office I have created a macro for printing documents. sub printDoc(FileName) Dim
I created this macro to correct an error (to fill blank created by Feb
I have this macro code, which allows me to define both a C enum
I have created a macro to refresh my workbook (recalc values, refresh links, etc).
I have created the macro below in Microsoft Excel 2003 on a windows XP
In one of my Excel workbooks I have created a macro containing the following

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.