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

C

printf...print data with format scanf...scan data with format \n...new line scanfは入力された文字(Enterキー)をその場では受け取らない。 scanf("%s",name); scanf("%*c%c", ch); //代入抑止の*を加える コンソールの消去 #include <stdlib.h> system("cls"); //</stdlib.h>…