#Meta-Wlp: #Macro: TITLE wlp: Learn C (I) p. 10 #Eval: $TITLE$ #Macro: PAGE bb1-10

Remember:

In C, variables must be declared before used!

How about the %d nonsense ...

What does this program print?

#include<stdio>
int main(){
   int zero ; /* this declares zero to be integer */
   zero = 0 ;
   printf("My hero, %d%d7\n", zero, zero ) ;
}
What does this program proclaim? #Shuffle: none $PAGE$-A $PAGE$-B $PAGE$-C Return to Learn C Introduction #: That James Bond is my hero. #: That 007 (James Bond) is my hero. #: That two %d's when placed next to each other makes the computer explode. #: