For more free Urdu Tutorials click here: http://bit.ly/ZcRlXc
Like us on facebook: http://on.fb.me/13Z3CqS
Follow us on twitter: http://bit.ly/13Z3LKP
This video is about C Programming language Arithmetic assignment Operator in Urdu. In this Urdu Tutorials Series I teach you how to program in C programming language.
The five arithmetic assignment operators are a form of short hand. Various textbooks call them "compound assignment operators" or "combined assignment operators". Their usage can be explained in terms of the assignment operator and the arithmetic operators. In the table we will use the variable age and you can assume that it is of integer data type.
age += 14; is age = age + 14;
age -= 14; is age = age -- 14;
age *= 14; is age = age * 14;
age /= 14; is age = age / 14;
age %= 14; is age = age % 14;