Hi all,
I'm starting in C and having problem with naming variables. I have this function:
void new (int a)
{
int new_"$a";
.
.
.
}
I'd like to replace "$a" with the content of variable a. It's possible to be done in C?
Thank you for any help.
I'm starting in C and having problem with naming variables. I have this function:
void new (int a)
{
int new_"$a";
.
.
.
}
I'd like to replace "$a" with the content of variable a. It's possible to be done in C?
Thank you for any help.
Comment