User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:stdio.h:tmpfile

Table of Contents

    FILE *tmpfile(void);

tmpfile

Creates temporary file which will be removed when closed or on normal program termination.
standard mode (mode “wb+”)
Returns stream or NULL on failure.

C Sourcecode Example

/* 
 * tmpfile example code
 * http://code-reference.com/c/stdio.h/tmpfile 
 */
 
#include <stdio.h> /* including standard library */
//#include <windows.h> /* uncomment this for Windows */
 
 
int main ( void )
{
  FILE *stream = tmpfile();
  char c;
 
  if( stream == NULL ) {
  perror("Error opening tmp file");
 }
 
 fputs("Test 1234", stream);
 rewind(stream);
 
  while((c = fgetc(stream) ) != EOF) {
    printf("%c", c);
  }
 
 fclose (stream);
 
  return 0;
}

output

  output: ./tmpfile
  Test 1234

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/stdio.h/tmpfile.txt · Last modified: 2024/02/16 01:05 (external edit)

Impressum Datenschutz