14 lines
139 B
C
14 lines
139 B
C
|
#include <stdio.h>
|
||
|
#include "gm.h"
|
||
|
|
||
|
main()
|
||
|
{
|
||
|
int i;
|
||
|
char a[20];
|
||
|
char b[20];
|
||
|
|
||
|
strcpy(b,"%s");
|
||
|
i=_ScanfAux(1,a,b);
|
||
|
printf("%d\n",i);
|
||
|
}
|