What is operator explain different type of operator in c with example
Answers
Answered by
0
Answer:
Did you mean: What is operator explain different types of operators in c with example
हिंदी में खोजें
ऑपरेटर क्या है उदाहरण के साथ c में विभिन्न प्रकार के ऑपरेटर की व्याख्या करें
Arithmetic Operators
Operator Description Example
* Multiplies both operands. A * B = 200
/ Divides numerator by de-numerator. B / A = 2
% Modulus Operator and remainder of after an integer division. B % A = 0
++ Increment operator increases the integer value by one. A++ = 11
Answered by
0
Answer:
Arithmetic Operators
Operator Description Example
* Multiplies both operands. A * B = 200
/ Divides numerator by de-numerator. B / A = 2
% Modulus Operator and remainder of after an integer division. B % A = 0
++ Increment operator increases the integer value by one. A++ = 11
Similar questions