Arduino Uno problem to server

I know that in order to connect to the server. I need to put these 4 code on the top.

#define BLYNK_TEMPLATE_ID "id"
#define BLYNK_DEVICE_NAME "Name"
#define BLYNK_AUTH_TOKEN "auth"

// Comment this out to disable prints and save space
#define BLYNK_PRINT Serial

However is it possible to do something like this?

#define BLYNK_TEMPLATE_ID id[]
#define BLYNK_DEVICE_NAME Name[]
#define BLYNK_AUTH_TOKEN auth[]

// Comment this out to disable prints and save space
#define BLYNK_PRINT Serial

char id[] =  "***";
char Name[] = "***";
char auth[] = "***";

Why…?
Have you tried it yourself?

I don’t think you can use the #define pre-processor directive in this way.

Pete.

I have done some research based on C++ and yes, it cannot be done. Thank you.