0
Is "char" a variable type
5 Antworten
+ 2
It is character. For example letter 'a'.
+ 1
yes
+ 1
char can represent a single character.
ex:- char ch='a';
char somename='b';
char abc='d';
cout<<ch<<endl; //a
cout<<somename<<endl; //b
0
how to use it
0
char is datatype which stores the ASCII integer in it . ..
A - Z and a-z they are nothing but ASCII values ..