A View of Tanichu (たにちゅーの思惑)

This blog is about personal thoughts and views by Tanichu. Tanichu is a nickname of Tadahiro Taniguchi.

Entries from 2011-05-17 to 1 day

はじめてのC言語?hello world?

//はじめてのC "hello world"を出力する☆ #include char word[] = "hello worldn"; int main(int x){ ? if(*(word+x-1)==0){ ??? return 0;} ? else{ ??? putchar(*(word+x-1)); ??? main(x+1); ? } ? return 0; } --------------------------------- さあ!…