#include <iostream>
#include <locale.h>
using namespace std;
int main01()
{
setlocale(LC_ALL,"Turkish");
auto variable=3;
//auto variable=3.5;
//auto variable=3.5f;
cout<<"Kendinden : "<<variable<<endl;
bool b=1;
//b=0; // GE�ERL� AMA YANLI�
cout<<"Mant�ksal : "<<b<<endl;
string s("Godoro");
s+=" Yay�nc�l�k ";
cout<<"Sicim : "<<s<<endl;
return 0;
}
Dosyayı İndir