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

  • Home
  • SEARCH
  • 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 8118309
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T04:26:48+00:00 2026-06-06T04:26:48+00:00

This is the faulty code #include<stdio.h> #define CAT_I(A, B) A ## B #define CAT(A,

  • 0

This is the faulty code

#include<stdio.h>

#define CAT_I(A, B)         A ## B
#define CAT(A, B)           CAT_I(A,B)

void main (void)
{
        printf(CAT("HELLO","WORLD"));
}

Why it gives that error? How could I fix it?

EDIT

This is what I am trying to do

#define TAG                   "TAG"
#define PRE                   CAT(CAT("<",TAG),">")  
#define POS                   CAT(CAT("</",TAG),">") 

#define XML      CAT(CAT(PRE,"XML SOMETHING"),POS)   

then

printf(XML); 
  • 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-06T04:26:49+00:00Added an answer on June 6, 2026 at 4:26 am

    The result of ## must be a single token, and "HELLO""WORLD" is not a single token. To concatenate strings, simply leave them beside each other:

    printf("HELLO" "WORLD");
    

    Or change your macro to remove the ##.

    #define CAT(A, B) A B
    

    String literals are concatenated together when there are no intervening tokens between them.

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

Sidebar

Related Questions

Consider this C code: #include stdio.h int main(void) { int count = 5; unsigned
Just to test, I ran this code #include<unistd.h> #include<stdio.h> #include<stdlib.h> int main() { int
I'm stunned, why does this code give me a segmentation fault? #include <stdio.h> #define
Code : #include stdio.h #include string.h int main() { char *p = abc; printf(p
This is my code: #include <stdio.h> #include <stdlib.h> void getinfo(unsigned int a, unsigned int
my code segfaults and I don't know why. 1 #include <stdio.h> 2 3 void
just for testing i had created the following code: #include<stdio.h> int main(){ char *p
Here is my code, #include<signal.h> #include<stdio.h> int main(int argc,char ** argv) { char *p=NULL;
My code #include <stdio.h> #include <stdlib.h> #include <ctype.h> void getData(short int *number, char *string)
Why does this code segment give segmentation fault? #include <stdio.h> #include <stdlib.h> #include <sys/mman.h>

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.