26 lines
506 B
C
26 lines
506 B
C
#define __STDC_WANT_LIB_EXT1__ 1
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
void find( char *format, ... )
|
|
{
|
|
va_list arglist;
|
|
|
|
va_start( arglist, format );
|
|
vscanf_s( format, arglist );
|
|
va_end( arglist );
|
|
}
|
|
|
|
void main( void )
|
|
{
|
|
int day, year;
|
|
char weekday[10], month[10];
|
|
|
|
find( "%s %s %d %d",
|
|
weekday, sizeof( weekday ),
|
|
month, sizeof( month ),
|
|
&day, &year );
|
|
printf_s( "\n%s, %s %d, %d\n",
|
|
weekday, month, day, year );
|
|
}
|