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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T05:00:59+00:00 2026-06-14T05:00:59+00:00

My problem is as follows: I have a string literal that is macro-ed like

  • 0

My problem is as follows:

I have a string literal that is macro-ed like so

#define TITLE "Title"

But there are instances when I need to pass in a wide char variant of this string. I want to be able to pass L"Title" to those functions. So naturally, I set out trying to define a new macro W_TITLE in terms of TITLE.

But I have no luck, all my approaches (listed bellow) have failed. Please tell me how such magic can be accomplished.

I tried

#define W_TITLE L##TITLE
#define W_TITLE #L TITLE
#define W_TITLE ##L TITLE

But they all fail…

  • 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-14T05:01:01+00:00Added an answer on June 14, 2026 at 5:01 am

    Try this:

    #define WIDEN_(exp)   L##exp
    #define WIDEN(exp)    WIDEN_(exp)
    #define TITLE         "Title"
    #define W_TITLE       WIDEN(TITLE)
    

    You need to force an expansion through an intermediate macro to get what you’re looking for.

    #include <stdio.h>
    
    #define WIDEN_(exp)   L##exp
    #define WIDEN(exp)    WIDEN_(exp)
    #define TITLE         "Title"
    #define W_TITLE       WIDEN(TITLE)
    
    int main(int argc, char *argv[])
    {
        printf("%s\n", TITLE);
        wprintf(L"%ls\n", W_TITLE);
        return 0;
    }
    

    Result:

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

Sidebar

Related Questions

I have a problem in mySQL that goes as follows: Count the instances of
I'm facing a problem that I can summarize as it follows: I have a
I have a mysql problem, my query looks as follows but not complete SELECT
My problem is as follows: I have an array of strings that contain dates
Proberly a very simple question, but within Java, I have a string as follows:
Newbie here! My problem is as follows: I have a dynamically populating ul where
My problem is as follows. I have an array of objects in the form
A minimal code that reproduces the problem is as follows: <div class=cell> <input type=text
When I write a C program, I encountered a problem that is as follows:
Well, the problem is as follows: I have a WPF Application built using the

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.