How can we better understand the real number type, integer type, character type and Boolean type in P language? Thank you, everyone.
In fact, there is nothing to "know" about these, just know what they are like. Real real is a real number type, which can represent real numbers and can have decimals. Integer is an integer type, representing an integer between -32767 and 32768. The character char can represent ASCII characters. Boolean Boolean is true or false. You can define a Boolean variable as true or false, and you can also say that an expression is true or false.
Seek adoption