Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

tmpfile - Open temporary file and read/write and returns in C

#include <stdio.h>

int main(void){
  FILE *temp;
  if((temp=tmpfile())==NULL) {
    printf("Cannot open temporary work file.\n");
    exit(1);
  }
}