#include <iostream> #include <locale.h> using namespace std; void my_function (double *p) { cout<<"G�sterici"<<endl; } void my_function (int i) { cout<<"De�er"<<endl; } int main02() { setlocale(LC_ALL,"Turkish"); my_function(NULL); my_function((double*)NULL); my_function(nullptr); return 0; }Dosyayı İndir