Question
Easy

In C program, variable can not start with:

1
An alphabet
2
A number
3
A special symbol other than underscore
4
A number and A special symbol other than underscore
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Python Programming Fundamentals
Topic: Getting Started with Python
Correct Answer
Option D
Explanation

The correct option is (4): A number and A special symbol other than underscore The correct option is (4): The foundation of the C programming language is built upon strict rules for naming identifiers, which include variable names. A C variable name must begin with either an alphabet (A-Z, a-z) or the underscore character (\_). It is a fundamental syntax rule that a variable cannot start with a digit (0-9).…Read More