#include <iostream>
using std::cout;
int main(){
int32_t a = 8;
cout << a;
return 0;
}
#include <cstdint>
I wrote a very short code like this, and it works.Codebut i didn't add a line like this:#include <iostream>
using std::cout;
int main(){
int32_t a = 8;
cout << a;
return 0;
}Codethis header is in the tr1, and not included in the mingw 3.4.5#include <cstdint>
can i use all the functions of cstdint without including it?