home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR2 / DVPG30FS.ZIP / TEST2.C < prev    next >
C/C++ Source or Header  |  1993-12-04  |  412b  |  23 lines

  1. #include <stdio.h>
  2.  
  3.  
  4.  
  5. int main(int argc, char *argv[])
  6. {
  7. int i, size, j;
  8. char string[80], st1[80], st2[80];
  9. int arg1, arg2, arg3, arg4, arg5;
  10.  
  11. arg1=arg2=arg3=arg4=arg5=0;
  12. gets(string);
  13. sscanf(string,"%s\"%s\"%i", &st1, &st2, &arg3);
  14.  
  15. printf("string1:%s|\r\n", st1);
  16. printf("string2:%s|\r\n", st2);
  17.  
  18. printf("%i|\r\n%i|\r\n%i|\r\n%i|\r\n%i|\r\n", arg1, arg2, arg3, arg4, arg5);
  19.  
  20. return 1;
  21. }
  22.  
  23.