Ask Question - Get Answer

1 Ans The general rules for constructing names for variables (unique identifiers)

Asked by Birds of the sky (2 Golds) Sunday, 03 Jan 2021, 04:28 AM at (Education Tutorials)

Please log in to answer, like and save
0
Save 0

<<< Previous
Log in to Answer Next >>>

Answer(s):

The general rules for constructing names for variables (unique identifiers) are - 

  • Names can contain letters, digits and underscores
  • Names must begin with a letter or an underscore (_)
  • Names are case sensitive (myVar and myvar are different variables)
  • Names cannot contain whitespaces or special characters like !, #, %, etc.
  • Reserved words (like C++ keywords, such as int) cannot be used as names

Answered by Birds of the sky (2 Golds) Sunday, 03 Jan 2021, 04:28 AM

Please log in to Upvote, Downvote and Report
           

Related Q/A:

1 Ans Which is the best and easy C programming learning website ?

1 Ans Write a C program to implement x power n using recursion

2 Ans Write a C program to implement Selection sort data structure and algorithm

1 Ans Write a C program for Interest Calculation

1 Ans Write a C program to implement Insertion sort data structure and algorithm

1 Ans Bank Exam all important Writing Materials

3 Ans Three ways to find Greatest Common Divisor (GCD) and Least Common Multiple (LCM) in a C program

1 Ans Write a C++ program for BigMod math

2 Ans Train Location Message TR Train_Code and Send to 16318 Example: TR 705 Send to 16318

2 Ans Write a C program for Binary Search algorithm