int main1() {
int a = 10;
float b = 10.5;
double c = 10.25215315136;
string d = "ikkichilar";
// char => charcter(belgi);
char belgi = 65;
int son = 'A';
// int son = 3;
cout << belgi << " " << son;
return 0;
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)