Basics of C Programming

Tokens In a C language, token is either a keyword, a symbol ,an identifier, a constant or a string literal. A C program consists of various tokens for example, the following C program consists of five tokens −

The individual tokens are −

Comments Comments are the text in C program and they … Read more

Java Keywords

Java contains 53 reserved words out of which 50 are keywords. Out of 50, only 48 keywords are used and two keywords const and goto are not in use, and 3 are literals values true, false, and null. These reserved words can not be used as identifiers. Java Keywords    The keyword is a reserved word that … Read more