Advertisement
mario_mos

zascci

Jul 24th, 2023
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <limits.h>
  3.  
  4. int main()
  5. {
  6. for (char j = 'a'; j <= 'z' ; j++) {
  7. printf("Valeur a-z ASCII de %c is %d \n", j, j);
  8. }
  9.  
  10. for (char i = 'A'; i <= 'Z'; i++) {
  11. printf("Valeur A-Z ASCII de %c is %d \n", i, i);
  12. }
  13.  
  14.  
  15.  
  16. return 0;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement