Which of the following does NOT qualify to be the name of a variable in C language?
Which of the following does NOT qualify to be the name of a variable in C language?
مندرجہ ذیل میں سے کون سی زبان میں متغیر کا نام بننے کے اہل نہیں ہے؟
Explanation
"define" is a reserved keyword in C, used in preprocessor directives (e.g., #define) and cannot be used as a variable name.
Variable names like "address", "name", and "age" are valid as they follow C naming rules and aren't reserved.