854  14

	 / 	
vsscanf	int vsscanf(const char *buffer, const char *format, vaIist arglist)    buffer     arglist   format	stdarg.h
write	int write(int handle, void *buf, unsigned len)     handle   buf len 	io.h
FileRead	int FileRead(int Handle, void *Buffer, int Count)     Handle,   FileOpen  FileCreate, Count    Buffer;      -1	Sys-Utils.hpp- -}
FileWrite	int FileWrite(int Handle, const void *Buffer, int Count)     Handle,   FileOpen  FileCreate, Count    Buffer;      -1	Sys- ] Utils.hpp



         scanf
   printf  .

 buffer, printf, sprintf, vfprintf, vprintf, vsprintf  -
        .  -
     14.4.1.   
    EOF  .

 fscanf, scanf, cscanf, sscanf, vfscanf, vscanf, vsscanf 
      .  -
     14.4.2.     -
       .  
   ,     ,  
EOF.    ,     ,  
  ,   . :

FILE *F;

if ( (F = fopen("Test2.txt", "rt")) "NULL)
{

ShowMessage("   ");

return;

}

int il, i2;

double r;

if (fscanf(F, "%d%d%le", &il, &i2, &r) != 3)

ShowMessage(" ") ;

else

fclose(F);

 vfprintf  vfscanf      
 va_list (.      11   11.5.5.   -
  ,    . :

#include <stdio.h>

#include <stdarg.h>