If you are referring to the character object 'char,' then here are a couple of uses:
To create an object, use this:
char object = 'a';
To create an array of chars, use this:
char array[10];
To dynamically allocate an array of chars, use this:
char array = new char[10];
(Don't forget to delete the object with 'delete [] array')
Converts a character to integer (if it is a numeric character)
There is no wildcard character in C++.
How the turbo c plus plus use what in the computer.
no
The semi-colon converts a C++ expression into a statement.
Use the comparison operators (==, <, <=, >, >=). All primitives (including char and int) support these built-in operators.
just as you do it in C.
Use the array index operator. Strings are just arrays of characters so use the zero-based index of the character you are interested in. Alternatively, use pointer arithmetic to achieve the same thing. Note that the string's name is a reference to the start of the character array.
Only if you have a C++ compiler.
depends what you use it for. c++ = object oriented c = not object oriented
Manipulators are functions that change the formatting parameters on character streams.
Use "typedef" : both in C and C++.