click below
click below
Normal Size Small Size show me how
C++ terms(set 1)
c++ terms
c++ term | Description | Example |
---|---|---|
int | whole number | -1, 0, 1 |
double | decimal | -1.2, 0.1 |
unsigned | non negative | 1, 0, 2 |
string | text | "Hello" |
!= | not equal to | 5!=76 |
== | equal to | 5==5 |
>= | greater or equal to | 5>=4 |
|| | or | a||b |
&& | and | a&&b |
// | comment | //Program 1 |