このプログラムを Turbo C で実行しようとしましたが、出力を解読できませんでした。これは%*c
どういう意味ですか?どんな助けでも大歓迎です。
int dd,mm,yy;
printf("\n\tEnter day,month and year");
scanf("%d %*c %d %*c %d",&dd,&mm,&yy); // what does %*c mean ?
printf("\n\tThe date is : %d %d %d",dd,mm,yy);
出力
Enter day, month and year 23
2
1991
3
5
The date is: 23 1991 5