Operator in the swift programmign languaga

#Basic Operator in Swift Programming. Operator is special symbol that is use to change , combine and perform the task on the given value. For example ( + ) is arithmetic operator use to add two numbers. Swift gives almost all the operator that is present in the c programming language. Swift provide the range operator that is not present in the c programming. 1…2 , a..<b , it is used to show the range of value. In this blog we are going to see common operator and learn to use them and try to build programming_idea. Terminology There are tree type of the operator in all the programming language , unary , binary and ternary. · unary operator is performed operation on the single operand.( - a ) , unary prefix operator need just before(!a) the operand and unary postfix operator need to keep just after the operand(a+) · Binary operator need two operand to perform the opera...