2009-05-27から1日間の記事一覧

C言語入門

Hello world!! /* hello.c */ #include <stdio.h> int main() { printf("Hello world!!"); return 0; } いまさらながらC言語を入門させていただきます。変数を使うには宣言をしなければならない #include <stdio.h> int main() { int a,b,c; a = 10; b = 15; c = a+b; printf("</stdio.h></stdio.h>…