#Meta-Wlp: #Macro: TITLE wlp: Learn C (II) p. 2
In C, assignment is an expression not a statement. It evaluates to a value, which can be used inside another expression
#include<stdio.h> int main(){ int one ; int two ; int three ; three = ( two = ( one=1 ) + 1 ; ) + 1 ; printf("It's as easy as %d, %d, %d!\n", one, two, three ) ; }Will this program work? #Shuffle: none $PAGE$-A $PAGE$-B Return to Learn C Introduction #: Yes. #: No. #: