#Meta-Wlp: #Macro: TITLE wlp: Learn C (I) p. 8
Hellow world! Good-bye world! No news ...... is good newsGuess what this program prints out:
#include<stdio.h> int main(){ int zero ; zero = 0 ; printf("My hero, %d\n", zero ) ; }#Shuffle: none $PAGE$-A $PAGE$-B $PAGE$-C Return to Learn C Introduction #: It isn't possible to answer this question. There isn't enough information. #: It prints out: My hero, %d zero. #: It prints out: My hero, 0. #: