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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T02:42:12+00:00 2026-05-24T02:42:12+00:00

Is there a non-macro way in C++ of printing a variable name with its

  • 0

Is there a non-macro way in C++ of printing a variable name with its value. Here is the macro way:

#define SHOW(a) std::cout << #a << ": " << (a) << std::endl

PS: I’m using Linux and do not need a cross-platform solution

  • 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-24T02:42:13+00:00Added an answer on May 24, 2026 at 2:42 am

    You can use dynamic symbols, but then it will only work in shared libraries or executables compiled with the -rdynamic flag. And it will recognize just global variables with default dynamic visibility.

    #include <dlfcn.h>
    #include <iostream>
    
    int NameMe = 42;
    
    const char *GetName(const void *ptr)
    {
        Dl_info info;
        if (dladdr(ptr, &info))
            return info.dli_sname;
        else
            return NULL;
    }
    
        template<typename T>
    void Dump(const T &t)
    {
        const char *name = GetName(&t);
        if (name)
            std::cout << name;
        else
            std::cout << "<unknown>";
        std::cout << ": " << t << std::endl;
    }
    int main()
    {
        int NoName = 33;
        Dump(NameMe);
        Dump(NoName);
        return 0;
    }
    
    $ g++ dump.cpp -ldl -rdynamic
    $ ./a.out
    NameMe: 42
    <unknown>: 33
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to make a variable non-inheritable in python? Like in the
Is there any non-hacky way to determine wether a class' superclass implements a particular
Is there a way for a non admin user to check the uptime of
Is there any way to make only a non-transparent portion of an image to
Is there a way that I can add non-static data to dataannotation attributes (either
Is there any non-awful way to have a collection of objects of more than
Are there non-macro versions of and and or in Clojure? Update: In this case
Is there a (standardized) way to get the name of the current method using
Is there anything non-RESTful about providing parameters to a HTTP DELETE request? My scenario
I know there are non-standard frameworks such as commons-validator, and hibernate validator. I wanted

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.