๐
Today I was learning c++ that I found out with this code :
#include <iostream>
using namespace std;
int main()
{
int num;
cin >> num;
cout << char(num);
return 0;
}
We can convert numbers to characters
and I learned that we have ASCII standard ๐๐ป๐๐ป
And then my question is WHY WE SHOULD USE ASCII in our code or programming ? ๐คจ
Can you tell me a example ? ๐ค
Thanks guys ๐ฅฐ
Source: Windows Questions C++