Guest User

Untitled

a guest
Feb 16th, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include "utils.h"
  2. #include <stdio.h>
  3. void lowercaseAlphabets();
  4. void uppercaseAlphabets();
  5. void numbers();
  6. void punctuation();
  7. int main()
  8. {
  9. uppercaseAlphabets();
  10. lowercaseAlphabets();
  11. numbers();
  12. punctuation();
  13. std::cin.get();
  14. return 0;
  15. }
Add Comment
Please, Sign In to add comment