OPERATORS:
There are 7 operators they are:
1.Arithmetic operators : +,-,*,/,% : addition,subtraction,multiply,division.
2.Relational operators : <,<=,>,>=,==,!= : lessthan,lessthan equalto,greaterthan,greaterthan equalto,is equalto,is not equalto
3.Logical operators : &&,||,! : AND,OR,NOT
4.assignment operators : +=,-=,/=,*= : example: a+=b(a=a+b)
5.Increment and Decrement operators : ++,-- : increment or decrement 1
6.Conditional operators : exp1 ? exp2:exp3 : ex: x=(a>b) ? a : b
7.Bitwise operators : &,|,^,<<,>>,~ : bitwise AND,OR,exclusive OR,shift left,shift right,one's complement.
Popular Posts
-
ARRAYS: An array is a group of related data items that share a common name.For instance,we can define an array name salary to represent a se...
-
Java Server Pages JavaServer Pages (JSP) technology is the Java platform technology for delivering dynamic content to web clients in a por...
-
STANDARD LIBRARY STRING FUNCTIONS: 1)strlen() 2)strcpy() 3)strcat() 4)strcmp() 1)strlen(): which tells about the length of the string means ...
-
POINTERS: The pointer has a simple definition that is A value which points towards the address of another value which is called as pointer. ...
-
The page directive lets you define one or more of the following case-sensitive attributes: * import="package.class" or import=...
-
Inheritance A key feature of OOP is reusability. It's always time saving and useful if we can reuse something that already exists rather...
-
2.2 Automatic Memory Management The Common Language Runtime does more for your C# and .NET managed executable than just JIT compile ...
-
What Is Visual Basic and Why do I need it? Visual Basic is Easy to learn Programming language. With Visual Basic you can develop Windows bas...
-
SQL Server Express is a free, easy to use, redistributable version of SQL Server 2005 designed for building simple data-driven applications....
-
Preprocessor directives Preprocessor directives are lines included in the code of our programs that are not program statements but directive...
No comments:
Post a Comment