something like #NAME or ##NAME. what do they mean in C? I saw them in GCC documents about macro.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
operator ## concatenates two arguments leaving no blank spaces between them..
output is : testing
and single # is used for parameter replacement withe the string parameter
like
and # is also a preprocessor directive..