Skip to content

Instantly share code, notes, and snippets.

@kuba-orlik
Created February 13, 2018 15:25
Show Gist options
  • Save kuba-orlik/b46fd74bf4181decc3dbd2c5937eab5d to your computer and use it in GitHub Desktop.
Save kuba-orlik/b46fd74bf4181decc3dbd2c5937eab5d to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <iostream>
#include "./../type_config.cpp"
using namespace std;
int main(){
freopen(NULL, "rb", stdin);
char buf[sizeof(type_name)*8];
fread(buf, sizeof(buf), 1, stdin);
cout << buf;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment