In C language can the first letter of the Identifier be Underscore? / C भाषा में आइडेंटिफायर का पहला अक्षर अंडरस्कोर हो सकता है? *
ਸਹੀ True सही
ਗਲਤ False गलत
Answers
Answered by
1
the given statement is true
Answered by
0
True
Explanation:
- In C language, the first letter of an Identifier or variable can be a underscore.
- The underscore is one of the characters can be used to name the variables and functions in C language.
- Example:
//The following code is a written in C language. In this program, one identifier is declared whose first letter is a underscore.
#include <stdio.h>
int main()
{
//First letter of the variable is the a underscore
int _Brainly;
_Brainly = 100;
printf("Value = %d",_Brainly);
return 0;
}
Refer the attached image for output.
Attachments:
Similar questions