Advertisement
Guest User

Untitled

a guest
May 27th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. uint32_t a=1024;
  2. std::string header;
  3.  
  4. //big-endian
  5. header+=(char)(a>>24);
  6. header+=(char)(a>>16);
  7. header+=(char)(a>>8);
  8. header+=(char)(a);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement