Guest User

Untitled

a guest
Jan 23rd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. const char* LETTERS = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
  2. const char* HEX = "0123456789ABCDEF"
  3.  
  4. char c;
  5. const int LETTERS_LEN = strlen(LETTERS);
  6. for (int i = 0; i < N; i++) {
  7. c = LETTERS[i % LETTERS_LEN]
  8. // place c in your triangle
  9. }
Add Comment
Please, Sign In to add comment