Created
February 13, 2018 15:25
-
-
Save kuba-orlik/b46fd74bf4181decc3dbd2c5937eab5d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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