Knowledge Walls
Venkatesan
Hyderabad, Andhra Pradesh, India
Passcode:
Introduction [cont'd]
Input Output Functions [cont'd]
Structures and Unions [cont'd]
# Preprocessor [cont'd]
Operators in Operators of Programming in C
2081 Views
C Operator 
Operator is a symbol which is used to operate operands. Different types of operations are perform by the operators. That are mathematical, logical and manipulate values. Operands can be variable or value.
Different types of Operators in C 
Arithmetic Operators
Relational Operators
Logical Operators
Increment & Decrement Operators
Assignment Operators
Bitwise Operators
Conditional Operators
Sizeof Operators
Program Hints 
Operator is one of the type of arithmetic operators. It is adding two values.F114
Program
#include
void main(){
   int a,b;
   int c;
   a = 10; b = 20;
   c = a + b;
   printf("%d+%d=%d",a,b,c);
}
Output 
10+20=30
Previous Topics
Previous lessons of current book.
Introduction of Programming in C
Introduction of Programming in C
Introduction of Programming in C
Best Lessons of "Programming in C"
Top lessons which are viewed more times.
Structures and Unions of Programming in C
Input Output Functions of Programming in C
Structures and Unions of Programming in C
  Copyright © 2014 Knowledge walls, All rights reserved
KnowledgeWalls
keep your tutorials and learnings with KnowledgeWalls. Don't lose your learnings hereafter. Save and revise it whenever required.
Click here for more details