Guest User

Untitled

a guest
Jun 19th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1.  
  2. #include <iostream>
  3. #include <fstream>
  4. using namespace std;
  5. int main() {
  6. char c;
  7. for (int i = 0; i < 2; i++){
  8. for (int j = 0; j < 256; j++){
  9. c = c & 0;
  10. c = c | j;
  11. cout << (char)c;
  12. }
  13. }
  14. return 0;
  15. }
Add Comment
Please, Sign In to add comment