Computer Science, asked by rupeshdalal2104, 4 hours ago

why is Float an invalid variable name

Answers

Answered by lakshyatripathi87
1

Explanation:

What is valid and invalid c variable names? A C variable must begin with a letter (a-z or A-Z) or an underscore - and may be followed by any number of other letters (a-z or A-Z), numbers (0–9) and underscores. A C variable may NOT be one of the C reserved words (things like “if”, “switch”, “bool”, “float” and so on).

Similar questions