Advertisement
Guest User

Untitled

a guest
Feb 24th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main()
  5. {
  6.     char toto = 'F';
  7.     printf("char: %c \n", toto);
  8.     toto += 32;
  9.     printf("char: %c \n", toto);
  10.     return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement