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 − printf(“Hello, World! \n”); The individual tokens are − printf ( “Hello” ) ; Comments Comments are the … Read more