Introducing Radical.sh

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

Binary Read operation in C

  #include <stdio.h>
  #include <stdlib.h>

  int main(int argc, char *argv[])
  {

      FILE *fp;
   
      if((fp=fopen("ForgetCode", "rb+"))==NULL) {
        printf("Cannot open file.\n");
        exit(1);
      }
     
      fclose(fp);
  }