Hello everyone. I'm new to C and I'm having trouble printing a variable's name.
Such as if I have int a =2, is there a way to print "a".

I would like my print statement to look like:

printf("variable's name %d \n",a);

and "a 2" to be printed to the screen.

I've been trying to find an answer on google but haven't had any luck.