Wed Jan 26 2022 08:37:37 GMT+0000 (Coordinated Universal Time)
Saved by @Yuktha139
/* C program to demonstrate example of Stringizing Operator */ #include <stdio.h> #define getVariableName(x) #x int main() { int student_age = 21; printf("value of %s is = %d\n", getVariableName(student_age), student_age); return 0; }
Copy this HTML code:
Preview:
open_in_newInstructions on embedding in Medium
Comments