The definition of keyword or reserved word and restriction apply to their use is given below.
Solution:
Keyword or reserved word: In computer programming ,a keyword or reserved word is a word or identifier that has a particular meaning to the programming language.In C, there are certain reserved word, called keyword that have a standard pre-defined meaning.
Restriction to apply keyword: The keywords can be used only for their intended purpose.They cannot be used as programmer defined identifiers.The keywords are all lowercase.Since uppercase and lowercase character are not equivalent, it is possible to utilize an uppercase keyword as an identifier.Normally,this is not done , as it considered a poor programming practice.
Solution:
Keyword or reserved word: In computer programming ,a keyword or reserved word is a word or identifier that has a particular meaning to the programming language.In C, there are certain reserved word, called keyword that have a standard pre-defined meaning.
Restriction to apply keyword: The keywords can be used only for their intended purpose.They cannot be used as programmer defined identifiers.The keywords are all lowercase.Since uppercase and lowercase character are not equivalent, it is possible to utilize an uppercase keyword as an identifier.Normally,this is not done , as it considered a poor programming practice.