L3: Variables and Datatypes Variable Naming and Reserved words

L3: Variables and Datatypes Variable Naming and Reserved words

by Mohammad Jahangir Alam -
Number of replies: 16

Share your learning, question , tricks , error handing etc about this lesson 3

In reply to Mohammad Jahangir Alam

Re: L3: Variables and Datatypes Variable Naming and Reserved words

by MD Ridwan202-15-3826 -
We learned about variables, namespaces and datatypes in C in lesson 3.
In reply to Mohammad Jahangir Alam

Re: L3: Variables and Datatypes Variable Naming and Reserved words

by Jannatul Ferdous Konok 202-15-3828 -
We learned about variables, namespaces and datatypes in C in lesson 3.
In reply to Jannatul Ferdous Konok 202-15-3828

Re: L3: Variables and Datatypes Variable Naming and Reserved words

by Tariqul Islam -
We learned about variables, namespaces and datatypes in C in lesson 3.
In reply to Mohammad Jahangir Alam

Re: L3: Variables and Datatypes Variable Naming and Reserved words

by Bijoy Dhar 202-15-3830 -
We learned about variables, namespaces and datatypes in C in lesson 3.
In reply to Mohammad Jahangir Alam

Re: L3: Variables and Datatypes Variable Naming and Reserved words

by S. M. Maruf Hossain 201-15-3470 -
Variables: where we store value.
Datatypes variable: A variable must have a data type associated with it, for example, it can have data types like integer, decimal numbers, characters, etc.
Naming: A variable name can only have letters (both uppercase and lowercase letters), digits and underscore. The first letter of a variable should be either a letter or an underscore. There is no rule on how long a variable name (identifier) can be.
Reserved words: Often found in programming languages and macros, reserved words are terms or phrases appropriated for special use that may not be utilized in the creation of variable names. For example, "print" is a reserved word because it is a function in many languages to show text on the screen.