mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-01-28 14:18:12 -08:00
Compare commits
6 Commits
8a6d164f11
...
94319e3752
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
94319e3752 | ||
|
|
10872e02d1 | ||
|
|
365b4f72b7 | ||
|
|
0f74ebe37b | ||
|
|
bf4c0379f2 | ||
|
|
424f6c2b9e |
@@ -149,6 +149,7 @@ Operators
|
||||
^= bitwise exclusive or and store
|
||||
|= bitwise or and store
|
||||
, separator as in ( y=x,z=++x )
|
||||
; statement terminator.
|
||||
|
||||
|
||||
Operator precedence
|
||||
|
||||
5
languages/c++.cpp
Normal file
5
languages/c++.cpp
Normal file
@@ -0,0 +1,5 @@
|
||||
Prepossesor directives:
|
||||
|
||||
- #include <iostream> ## #include is used to include content of another file in your c++ code
|
||||
- #define PI 3.14159 ## #define - Used to define macros.Macros are pieces of code that are replaced by a specific value
|
||||
- #pragma once This directive provides implementation-specific instructions to the compiler. It is often used for compiler-specific features or optimizations.
|
||||
@@ -2,7 +2,7 @@
|
||||
# DOCKER
|
||||
##############################################################################
|
||||
|
||||
|
||||
docker init # Creates Docker-related starter files
|
||||
docker build -t friendlyname . # Create image using this directory's Dockerfile
|
||||
docker run -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80
|
||||
docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode
|
||||
|
||||
Reference in New Issue
Block a user