#include <iostream>
#include <locale.h>
using namespace std;
void f(int x=1,int y=1,int z=1){
cout<<x<<" , "<<y<<" , "<<z<<"\n";
}
int main0103(){
setlocale(LC_ALL,"Turkish");
f(3,4,5);
f(3,4);
f(3);
f();
return 0;
}
Dosyayı İndir