Answers for "char type casting in c++"

C++
1

char type casting in c++

#include <iostream>
using namespace std;
 
int main()       
{
  cout<< (char)65 <<"\n";
}
Posted by: Guest on May-23-2021

Browse Popular Code Answers by Language