#Meta-Wlp: #Macro: TITLE wlp: Learn C (II) p. 3
There are operators that combine arithmetic and assignment, such as += and *=. Try to guess how these operators work.
#include<stdio.h> int main(){ int count ; count = 1 ; printf("It's as easy as %d,", count ) ; count += 1 ; printf(" %d,", count ) ; count += 2 ; printf(" %d!\n", count ) ; }#Shuffle: none $PAGE$-A $PAGE$-B $PAGE$-C Return to Learn C Introduction #: It prints out 1, 1, 2. #: It prints out 1, 2, 3. #: It prints out 1, 2, 4. #: