+ 12
What is “##” operator in C?
6 Respuestas
+ 15
## is an macro operator which is used to concatenate
https://www.cprogramming.com/reference/preprocessor/token-pasting-operator.html
+ 9
The ‘##’ pre-processing operator performs token pasting. When a macro is expanded, the two tokens on either side of each ‘##’ operator are combined into a single token, which then replaces the ‘##’ and the two original tokens in the macro expansion.
+ 4
This is given in the SL C tutorial BTW.
+ 1
It is a macro-operator that is used to concatenate
0
Macro token and concantenates 5 ## 6