home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
High Voltage Shareware
/
high1.zip
/
high1
/
DIR2
/
DVPG30FS.ZIP
/
TEST2.C
< prev
next >
Wrap
C/C++ Source or Header
|
1993-12-04
|
412b
|
23 lines
#include <stdio.h>
int main(int argc, char *argv[])
{
int i, size, j;
char string[80], st1[80], st2[80];
int arg1, arg2, arg3, arg4, arg5;
arg1=arg2=arg3=arg4=arg5=0;
gets(string);
sscanf(string,"%s\"%s\"%i", &st1, &st2, &arg3);
printf("string1:%s|\r\n", st1);
printf("string2:%s|\r\n", st2);
printf("%i|\r\n%i|\r\n%i|\r\n%i|\r\n%i|\r\n", arg1, arg2, arg3, arg4, arg5);
return 1;
}