Tagged Questions
1
vote
1answer
105 views
Token pasting in C with structure dereference operator
I have a question about '##' for pre-processor pasting with a dereference operator. Could anyone tell me why the code below will not compile?
typedef struct
{
char data;
} MY_STRUCT;
MY_STRUCT ...
1
vote
1answer
101 views
how to make string or char constants with macro expansion using ## operator
I am trying to do the following,
#define mkstr(str) #str
#define cat(x,y) mkstr(x ## y)
int main()
{
puts(cat(\,n));
puts(cat(\,t))
return 0;
}
both of the puts statements cause error. ...
1
vote
1answer
666 views
Advanced Preprocesor Tokenization in C
I'm having problem building C macro for my PIC. It's the same for other C-based system's, so non-PIC C experts are also more then welcome.
Lets assume that I have defined my LED_1 pin :
#define ...
1
vote
2answers
126 views
In C++, is it possible to use a string literal as a macro name?
Here's my scenario: I have a set of source files that I'd prefer to not modify, but I'd like to replace some of the string literals with other values. Here's an example:
#define "oldString" ...
4
votes
3answers
1k views
C Macro Token Concatenation involving a variable - is it possible?
I'm trying to define a macro to generate a token name, containing a variable.
Basically, what I'm trying is this:
#define GLUER(x,y,z) x##y##z
#define PxDIR(x) GLUER(P,x,DIR)
int main() {
int ...
1
vote
3answers
1k views
C Programming: Preprocessor, macros as tokens
I'm trying to do something that is conceptually similar to this, but can't seem to get it to work (error shown at end) any ideas?
#include <stdio.h>
int main( int argc , char const *argv[] )
{
...
37
votes
2answers
15k views
C preprocessor and concatenation
I am trying to write a code, where name of functions are dependent on the value of a certain macro variable. To be specific, I am trying to write a macro like this:
#define VARIABLE 3
#define ...