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/scanf.c

12 lines
152 B
C

#include <stdio.h>
void main()
{
int day, year;
char weekday[10], month[12];
scanf( "%s %s %d %d", weekday, month, &day, &year );
}