Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void main(){
- int i;
- char c, k;
- k = 'k';
- c = k;
- scanf("%d", &i);
- printf("%d Isto e um inteiro, %c Isto e um caractere. %c Isso tbm", i, c, 'a');
- return;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement