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
struct book { char name[10]; float price; int pages; };2 :
long int l = 2.35;3 :
enum day {Sun, Mon, Tue, Wed};