Question: Which of the following special symbol allowed in a variable name?
A
B
C
D
* (asterisk)
B
| (pipeline)
C
- (hyphen)
D
_ (underscore)
Note: Not available
1 : struct aa
{
int a;
float b;
};2 : struct aa
{
int a;
float b;
struct aa var;
};3 : struct aa
{
int a;
float b;
struct aa *var;
}