# C/C++ ## Naming convention C++ element | Case -------------|------------ class | PascalCase variable | camelCase method | camelCase ## Library Import `#include ` C++ libs encapsulate C libs. A C library can be used with the traditional name `` or with the prefix _**c**_ and without `.h` as ``. ### Special Operators Operator | Operator Name -----------|---------------------------------------------------- `::` | global reference operator `&` | address operator (returns a memory address) `*` | deferentiation operator (returns the pointed value) ### Constant Declaration ```cpp #define constant_name value const type constant_name = value; ``` ### Console pausing before exit ```cpp #include system("pause"); getchar(); // waits input from keyboard, if is last instruction will prevent closing console until satisfied ``` ### Namespace definition Can be omitted and replaced by namespace`::` `using namespace ;` ### Main Function ```cpp int main() { //code here return 0; } ``` ### Variable Declaration ```cpp type var_name = value; //c-like initialization type var_name (value); //constructor initialization type var_name {value}; //uniform initialization type var_1, var_2, ..., var_n; ``` ### Type Casting `(type) var;` `type(var);` ### Variable Types Type | Value Range | Byte -------------------------|-----------------------------------|------ `short` | -32768 to 32765 | 1 `unsigned short` | 0 to 65535 | 1 `int` | -2147483648 to 2147483647 | 4 `unsigned int` | 0 to 4294967295 | 4 `long` | -2147483648 to 2147483647 | 4 `unsigned long` | 0 to 4294967295 | 4 `long long` | | 8 `float` | +/- 3.4e +/- 38 (~7 digits) | 4 `double` | +/- 1.7e +/- 308 (~15 digits) | 8 `long double` | | 16 (?) Type | Value -------------------------|----------------------------- `bool` | true or false `char` | ascii characters `string` | sequence of ascii characters `NULL` | empty value ### Integer Numerals Example | Type ---------|------------------------ `75` | decimal `0113` | octal (zero prefix) `0x4` | hexadecimal (0x prefix) `75` | int `75u` | unsigned int `75l` | long `75ul` | unsigned long `75lu` | unsigned long ### FLOATING POINT NUMERALS Example | Type ------------|------------- `3.14159L` | long double `60.22e23f` | float Code | Value ----------|--------------- `3.14159` | 3.14159 `6.02e23` | 6.022 * 10^23 `1.6e-19` | 1.6 * 10^-19 `3.0` | 3.0 ### Character/String Literals `'z'` single character literal `"text here"` string literal ### Special Characters Escape Character | Character -------------------|----------------------------- `\n` | newline `\r` | carriage return `\t` | tab `\v` | vertical tab `\b` | backspace `\f` | form feed `\a` | alert (beep) `\'` | single quote (') `\"` | double quote (") `\?` | question mark (?) `\\` | backslash (\) `\0` | string termination character ### Screen Output ```cpp cout << expression; // print line on screen (no automatic newline) cout << expression_1 << expression_2; // concatenation of outputs cout << expression << "\n"; // print line on screen cout << expression << endl; // print line on screen //Substitutes variable to format specifier #include printf("text %", variable); // has problems, use PRINTF_S printf_s("text %", variable); ``` ### Input ```cpp #include cin >> var; //space terminates value cin >> var_1 >> var_2; //if used after cin >> MUST clear buffer with cin.ignore(), cin.sync() or std::ws getline(stream, string, delimiter) //read input from stream (usually CIN) and store in in string, a different delimiter character can be set. #include scanf("%", &variable); // has problems, use SCANF_S scanf_s("%", &variable); //return number of successfully accepted inputs ``` ### Format Specifiers %[width].[length][specifier] Specifier | Specified Format ------------|----------------------------------------- `%d`, `%i` | singed decimal integer `%u` | unsigned decimal integer `%o` | unsigned octal `%x` | unsigned hexadecimal integer `%X` | unsigned hexadecimal integer (UPPERCASE) `%f` | decimal floating point (lowercase) `%F` | decimal floating point (UPPERCASE) `%e` | scientific notation (lowercase) `%E` | scientific notation (UPPERCASE) `%a` | hexadecimal floating point (lowercase) `%A` | hexadecimal floating point (UPPERCASE) `%c` | character `%s` | string `%p` | pointer address ### CIN input validation ```cpp if (cin.fail()) // if cin fails to get an input { cin.clear(); // reset cin status (modified by cin.fail() ?) cin.ignore(n, '\n'); //remove n characters from budder or until \n //error message here } if (!(cin >> var)) // if cin fails to get an input { cin.clear(); // reset cin status (modified by cin.fail() ?) cin.ignore(n, '\n'); //remove n characters from budder or until \n //error message here } ``` ### Cout Format Specifier ```cpp #include cout << stew(print_size) << setprecision(num_digits) << var; //usage setbase(base) //set numeric base [dec, hex, oct] setw(print_size) //set the total number of characters to display setprecision(num_digits) //sets the number of decimal digits to display setfill(character) //use character to fill space between words ``` ### Arithmetic Operators Operator | Operation ---------|--------------- a `+` b | sum a `-` b | subtraction a `*` b | multiplication a `/` b | division a `%` b | modulo a`++` | increment a`--` | decrement ### Comparison Operators Operator | Operation ---------|-------------------------- a `==` b | equal to a `!=` b | not equal to a `>` b | greater than a `<` b | lesser than a `>=` b | greater than or equal to a `<=` b | lesser than or equal to ### Logical Operator Operator | Operation ---------------------|----------------------- `!`a, `not` a | logical negation (NOT) a `&&` b, a `and` b | logical AND a `||` b, a `or` b | logical OR ### Conditional Ternary Operator `condition ? result_1 : result_2` If condition is true evaluates to result_1, and otherwise to result_2 ### Bitwise Operators Operator | Operation -----------------------|--------------------- `~`a, `compl` a | bitwise **NOT** a `&` b, a `bitand` b | bitwise **AND** a `|` b, a `bitor` b | bitwise **OR** a `^` b, a `xor` b, | bitwise **XOR** a `<<` b | bitwise left shift a `>>` b | bitwise right shift ### Compound Assignment O Operator | Operation ------------|------------ a `+=` b | a = a + b a `-=` b | a = a - b a `*=` b | a = a * b a `/=` b | a = a / b a `%=` b | a = a % b a `&=` b | a = a & b a `|=` b | a = a | b a `^=` b | a = a ^ b a `<<=` b | a = a << b a `>>=` b | a = a >> b ### Operator Precedence 1. `!` 2. `*`, `/`, `%` 3. `+`, `-` 4. `<`, `<=`, `<`, `>=` 5. `==`, `!=` 6. `&&` 7. `||` 8. `=` ### Mathematical Functions ```cpp #include abs(x); // absolute value labs(x); //absolute value if x is long, result is long fabs(x); //absolute value if x i float, result is float sqrt(x); // square root ceil(x); // ceil function (next integer) floor(x); // floor function (integer part of x) log(x); // natural log of x log10(x); // log base 10 of x exp(x); // e^x pow(x, y); // x^y sin(x); cos(x); tan(x); asin(x); //arcsin(x) acos(x); //arccos(x) atan(x); //arctan(x) atan2(x, y); //arctan(x / y) sinh(x); //hyperbolic sin(x) cosh(x); //hyperbolic cos(x) tanh(x); //hyperbolic tan(X) ``` ### Character Classification ```cpp isalnum(c); //true if c is alphanumeric isalpha(c); //true if c is a letter isdigit(c); //true if char is 0 1 2 3 4 5 6 7 8 9 iscntrl(c); //true id c is DELETE or CONTROL CHARACTER isascii(c); //true if c is a valid ASCII character isprint(c); //true if c is printable isgraph(c); //true id c is printable, SPACE excluded islower(c); //true if c is lowercase isupper(c); //true if c is uppercase ispunct(c); //true if c is punctuation isspace(c); //true if c is SPACE isxdigit(c); //true if c is HEX DIGIT ``` ### Character Functions ```cpp #include tolower(c); //transforms character in lowercase toupper(c); //transform character in uppercase ``` ### Random Numbers Between max-min (int) ```cpp #include