Domanda

C Language:

BASIC has print ? myVar that bundles up the variable name & value. Available in C? I'm using a flavor of C for microcontrollers Thanks

È stato utile?

Soluzione

You can define a macro:

#define PR_INT(x) printf(#x"=%d\n",x)
#define PR_CHAR(x) printf(#x"=%c\n",x)
#define PR_STRING(x) printf(#x"=%s\n",x)

and so on

There is no such feature built into the language because the variable name is just a label,which the compiler may not need after the parsing stage (still needs the global variables)

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top