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
1
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 ?

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

1 Ans 41st BCS Technical Subjective Written Exam Question Download

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

2 Ans BPSC aptitude test all programs solutions here

1 Ans Write a C program to print Pascal Triangle

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

1 Ans Write a C Program to check Anagrams of two strings

1 Ans Write a C++ program for BigMod math

1 Ans Write a C program to find nth Fibonacci number