Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- //Funcoes Sobrecarregados nome conhecido como Overhead
- // Argumentos padrão para uma função;
- int soma(int x = 0); // Pre definida
- int soma (double);
- int main(){
- cout<<soma(1.5)<<endl;
- cout<<soma(10)<<endl;
- system("pause");
- return 0;
- }
- int soma(int x){return x+x;}
- int soma(double z){return z+z;}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement