PROGRAMMING:- what is the definition of KEYWORDS?

@dholey (1383)
India
December 13, 2006 2:44am CST
THIS IS GOING TO BE THE THIRD CHAPTER OF "LEARNING LANGUAGE AND EARNING MONEY" CONCEPT ... HERE YOU GIVE YOUR OWN DEFINITION OF keywords OF PROGRAMMING LANGUAGE.... I AM LOOKING FORWARD TO GET SOME GOOD DEFINITIONS HERE ...
2 people like this
6 responses
• India
17 Dec 06
Keywords are a set of reserved words/identifier in a computer language. A keyword cannot be used as a variables or any user defined elements in a program. Some of the keywords in C/C++ language are as follows: 1) if 2) int 3) while 4) union
1 person likes this
@dholey (1383)
• India
17 Dec 06
NICE WORK SO THE CONCLUSION IS:- 1. KEWORDS ARE RESERVE WORDS 2. KEWORDS ARE COMPILER SPECIFIC 3. KYWORDS ARE HAVING SPECIAL MEANING AND WORK, SO PROGRAMMERS SPECIFY THEIR WORK TO THE COMPILER USING IT , KEYWORDS ARE EXCLUSIVELY USED BY THE COMPILER i.e PROGRAMMER CAN NOT USE IT FOR THEIR OWN PURPOSES LIKE MAKING NAMES OF VARIABLE , NAMING FUNCTIONS ETC 4. USER DEFINED IDENTIFIERS CAN NOT BE SAME AS KEYWORDS BUT KEYWORDS CAN BE A PART OF VARIABLE'S (OR OTHER IDENTIFIERS) NAME . FEEL FREE TO ADD MORE POINTS HERE ....
@dholey (1383)
• India
21 Dec 06
thanks for participation
• United States
21 Dec 06
key workds are special reserved words which has a specific function in a specific context.keywords are used by compilers,interpreters etc to achive specific run time behaviours for programs
1 person likes this
@mythmoh (3984)
• United States
17 Dec 06
Keywords are the one which are reserved words and will be having special meaning and special purpose.keywords cannot be used as identifiers.Keyword instructs the compiler to do some process.
1 person likes this
@dholey (1383)
• India
2 Jan 07
good explanation
@kingadnan (1538)
• Pakistan
17 Feb 07
i think keywords are reserved words in programming language, thanks
• India
3 Jan 07
keywords are reserve words exclusively used for specifying the work to the compiler, every keyword has a special meaning which is predefined to the compiler so using keyword we give commands to the compiler to perform some specific work ,
• India
17 Dec 06
denis ritchei  - dennis
keywords are special words recognised by the compiler, there are 32 keywords in c and 48 in c++
1 person likes this
• India
2 Feb 07
keyword is the fixed word that are used in programming language such as if,else,int, char, etc.