This repository has been archived on 2024-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
CodeBlocksPortable/WATCOM/samples/clibexam/sscanf.c

16 lines
331 B
C

#include <stdio.h>
/* Scan a date in the form "Saturday April 18 1987" */
void main()
{
int day, year;
char weekday[20], month[20];
sscanf( "Friday August 0014 1987",
"%s %s %d %d",
weekday, month, &day, &year );
printf( "%s %s %d %d\n",
weekday, month, day, year );
}