Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C で dd.mm.yyyy の形式でコンソールから日付を読み取る方法があるかどうかを知りたいです。日付の情報を含む構造があります。日、月、年を含む日付のためだけに別の構造を試しました:
typedef struct { int day; int month; int year; } Date;
しかし、ドットが問題です。何か案が?
試す:
Date d; if (scanf("%d.%d.%d", &d.day, &d.month, &d.year) != 3) error();