#Meta-Wlp: #Macro: TITLE wlp: Learn C (II) p.2a
two = (one=1)+1into the statement,
two = (one=1)+1 ;and statements cannot go inside of other statements.
#include<stdio.h> int main(){ int one, two, four ; one = 1 ; four = ( two = ( one + one ) ) + two ; printf("It's as easy as %d, %d, %d!\n", one, two, four ) ; }#Shuffle: none $PAGE$-A $PAGE$-B Return to Learn C Introduction #: Yes. #: No. #: