[Solved] Are qualifiers same as Identifiers..? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 95

[Solved] Are qualifiers same as Identifiers..?

17th May 2019, 6:02 PM
Vinesh Wadhwani
Vinesh Wadhwani - avatar
4 Answers
+ 8
No, qualifiers are the additional types given to variables and identifiers are names given to anything E.g. long int var; //qualified int and the identifier is var int var2; //unqualified int
17th May 2019, 6:18 PM
Earl Chukwu
Earl Chukwu - avatar
+ 8
No, they both are different. Identifiers are the names which we can use for variables or functions. There are various rule defined for choosing identifier. While the keywords which are used to modify the properties of a variable are called qualifiers. Examples of qualifiers are const and volatile. Const used to fix the value in variable. And volatile variables can't be changed by program explicitly but keeps on changing by the program. For more information about qualifiers you can refer to this link. https://googleweblight.com/i?u=https://fresh2refresh.com/c-programming/c-type-qualifiers/&hl=en-IN
18th May 2019, 2:53 PM
Shashank Sharma
Shashank Sharma - avatar
+ 7
No,both are different from each other...
18th May 2019, 6:00 AM
Ajay Singh Chandel
Ajay Singh Chandel - avatar
+ 4
Noh... both are different.
19th May 2019, 9:14 AM
Vaishnavi Rajkumar Pawar