C: How to use scanf( ) to read the date in the form of dd-mm-yy?
How to use scanf( ) to read the date in the form of dd-mm-yy?
To read the date in the form of dd-mm-yy one possible way is:
int dd, mm, yy ; char ch ; /* for char '-' */ printf ( "\nEnter the date in the form of dd-mm-yy : " ) ; scanf( "%d%c%d%c%d", &dd, &ch, &mm, &ch, &yy ) ;
Another way is to use suppression character * is as follows:
int dd, mm, yy ; scanf( "%d%*c%d%*c%d", &dd, &mm, &yy ) ;
The suppression character '*' suppresses the input read from the standard input buffer for the assigned control character.




Comments
Log in or create a user account to comment.