Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

PPL: Character Data Type

CHARACTER DATA TYPE


Character data type allows a variable to store only one character (letter, number, etc.).
char keyword is used to refer character data type.
It is a primitive data type.
For example-
char gender = ‘m’;

We can’t store more than one character using char data type.

Leave a Comment