Operators and Assignments Part-2

Operators in java Operators can be categorized in the  following types: Concatenation: In Java, + operator is very flexible which means that it can be used to perform arithmetic operation as well as used to concatenate strings. Therefore it is also called as String Arithmetic Operator and String Concatenation Operator. For example, System.out.println(2+3); System.out.println(“Mark”+” Zuckerburg”); System.out.println(“Mark”+42); Output of …

Operators and Assignments Part-2 Read More »

Token in C – free C programming tutorial

In this tutorial you will be familiarize with token available for C programming language. Token: Tokens are defined as the smallest lexical unit of the C program. There are different types of tokens available for C which are given as the following:  Keywords  Identifiers or variables  Constants  Strings Operators Different types of tokens are discussed …

Token in C – free C programming tutorial Read More »