Compound Assignment Operators in C Programming Language

Compound Assignment Operators in C Programming Language

Technotip

55 лет назад

4,095 Просмотров

http://technotip.com/6386/assignment-operators-in-c/

In this video tutorial we show Assignment Operators in C programming language.

Assignment Operators
If a and c are the operands.

c += a; is equal to writing c = c + a;
c -= a; is equal to writing c = c – a;
c *= a; is equal to writing c = c * a;
c /= a; is equal to writing c = c / a;
c %= a; is equal to writing c = c % a;


C Programming Interview / Viva Q&A List
http://technotip.com/6378/c-programming-interview-viva-qa-list/

C Programming: Beginner To Advance To Expert
http://technotip.com/6086/c-programming-beginner-to-advance-to-expert/

Тэги:

#C_Programming #assignment_operators #addition #subtraction #multiplication #division #modular_division #Compound
Ссылки и html тэги не поддерживаются


Комментарии: