日付の比較を行う際に助けが必要です。プログラムは、ユーザーが入力日付を入力すると動作し、その日付でテキスト ドキュメント ファイルと比較します。日付がユーザー入力日付の間にあり、それがドキュメントの日付と一致する場合、それが実行されます.. if の代わりにこのケースに switch ケースを使用することを考えています..それは可能ですか?
if (date_compare(tld->begin, d) > 0 && //compare user input start date with actual date.txt begin input date
date_compare(tld->end, d) < 0) //compare user input end date with actual date.txt input date
return 0;