From fea0e9bce3289eae984c77b13c3635f2450ff945 Mon Sep 17 00:00:00 2001 From: Marcello Lamonaca Date: Sat, 28 Jan 2023 10:28:24 +0100 Subject: [PATCH] feat(c): rewrite `C++` notes as `C` notes --- docs/{C++/cpp.md => c/c.md} | 331 +++++++++--------------------------- mkdocs.yml | 2 +- 2 files changed, 83 insertions(+), 250 deletions(-) rename docs/{C++/cpp.md => c/c.md} (74%) diff --git a/docs/C++/cpp.md b/docs/c/c.md similarity index 74% rename from docs/C++/cpp.md rename to docs/c/c.md index 3825520..54876f0 100644 --- a/docs/C++/cpp.md +++ b/docs/c/c.md @@ -1,20 +1,13 @@ # 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 ``. +```c +#include // search in current + system directories +#include "lib.h" // search in current directory +``` -### Special Operators +## Special Operators Operator | Operator Name -----------|---------------------------------------------------- @@ -22,38 +15,29 @@ Operator | Operator Name `&` | 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 +## Namespace definition Can be omitted and replaced by namespace`::` `using namespace ;` -### Main Function +## Main Function -```cpp -int main() { - //code here - return 0; -} +```c +int main(int argc, char *argv[]) { } +``` + +## Variables & Types + +### Constant Declaration + +```c +#define constant_name value +const type constant_name = value; ``` ### Variable Declaration -```cpp +```c type var_name = value; //c-like initialization type var_name (value); //constructor initialization type var_name {value}; //uniform initialization @@ -100,7 +84,7 @@ Example | Type `75ul` | unsigned long `75lu` | unsigned long -### FLOATING POINT NUMERALS +### Floating Point Numerals Example | Type ------------|------------- @@ -136,32 +120,21 @@ Escape Character | Character `\\` | backslash (\) `\0` | string termination character -### Screen Output +## Standard Input/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 +### Standard Output -//Substitutes variable to format specifier +```c #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. +### Standard Input +```c #include -scanf("%", &variable); // has problems, use SCANF_S + scanf_s("%", &variable); //return number of successfully accepted inputs ``` @@ -184,37 +157,7 @@ Specifier | Specified Format `%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 -``` +## Operators ### Arithmetic Operators @@ -263,7 +206,7 @@ a `^` b, a `xor` b, | bitwise **XOR** a `<<` b | bitwise left shift a `>>` b | bitwise right shift -### Compound Assignment O +### Compound Assignment Operators Operator | Operation ------------|------------ @@ -289,10 +232,13 @@ a `>>=` b | a = a >> b 7. `||` 8. `=` +## Common Functions + ### Mathematical Functions -```cpp +```c #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 @@ -315,9 +261,9 @@ cosh(x); //hyperbolic cos(x) tanh(x); //hyperbolic tan(X) ``` -### Character Classification +### Character Functions -```cpp +```c 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 @@ -330,61 +276,14 @@ 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