DEV Community

johongir123
johongir123

Posted on

Char haqida ma`lumot.

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;
  }
Enter fullscreen mode Exit fullscreen mode

@dawroun

Top comments (0)