Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void main(){
- int i=0;
- char c, k;
- k = 'k';
- c = k;
- if (c == k)
- {
- printf("Isto executou porque o caractere de c é igual ao de k.\n");
- }
- if (i > 5)
- {
- i=5;
- }
- else
- {
- printf("\nIsto executou porque o valor de i não é maior que 5.");
- }
- return;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement