1998-01-01から1ヶ月間の記事一覧

整数値 15 と 37 の和を表示する

C

明解C言語 入門編 > 1. まずは慣れよう > 整数値 15 と 37 の和を表示する C #include <stdio.h> int main(int argc, char* argv[]) { printf("%d", 15 + 37); return 0; }実行結果 R:\>lesson000\project1.exe 52</stdio.h>