Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void main()
- { //int main (){
- int i=0;
- char c, k;
- k = 'k';
- i = Soma5DezVezes(i);
- c = k;
- printf("%d Isto e um inteiro, %c Isto e um caractere. %c Isso tbm", i, c, 'a');
- printf("\nPerceba que nem tudo que foi declarado antes esta sendo impresso na tela. Curioso...");
- printf("\nRealmente tudo que escrevo aqui aparecera depois");
- //return 0;
- return;
- }
- int Soma5DezVezes(int soma)
- {
- soma = soma + 5 + 5 + 5 + 5 + 5 + 5 + 5 + 5 + 5 + 5;
- return soma;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement