Friday, 6 September 2013

Tokens in "C"


Tokens in C A C program consists of various tokens and a token is either a keyword, an identifier, a constant, a string literal, or a symbol. For example, the following C statement consists of five tokens: 

 printf("Hello, World! \n"); 

 The individual tokens are:  printf ( "Hello, World! \n" ) ;  

Introduction to "C"

Introduction to "C"

The C is a general-purpose, procedural, imperative computer programming language developed in 1972 by Dennis M. Ritchie at the Bell Telephone Laboratories to develop the UNIX operating system.The C is the most widely used computer language, it keeps fluctuating at number one scale of popularity along with Java programming language, which is also equally popular and most widely used among modern software programmers.............