#Meta-Wlp: #Macro: TITLE wlp: Learn C (II) p. 1 #Eval: $TITLE$ #Macro: PAGE bb2-1

Chapter II

In this chapter you will learn about C language expressions
and statements.
#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 ) ;
}
What does this C language program do? #Shuffle: none $PAGE$-A $PAGE$-B Return to Learn C Introduction #: I have no idea what it does. #: It prints the text: It's as easy as 1, 2, 3! #: