Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //RECURSIVIDADE
- // Técnica de programação que consiste numa função que chama a si própria.
- #include <stdio.h>
- void imprime(int);
- main(){
- imprime(1);
- return 0;
- }
- void imprime(int n){
- if(n<=5){
- printf("%i\n",n);
- imprime(n+1);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement