mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-01-28 14:18:12 -08:00
Compare commits
6 Commits
f1a7c9f5f7
...
b2892dc27e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b2892dc27e | ||
|
|
10872e02d1 | ||
|
|
365b4f72b7 | ||
|
|
0f74ebe37b | ||
|
|
bf4c0379f2 | ||
|
|
adfe3e074b |
100
languages/C.txt
100
languages/C.txt
@@ -149,6 +149,7 @@ Operators
|
|||||||
^= bitwise exclusive or and store
|
^= bitwise exclusive or and store
|
||||||
|= bitwise or and store
|
|= bitwise or and store
|
||||||
, separator as in ( y=x,z=++x )
|
, separator as in ( y=x,z=++x )
|
||||||
|
; statement terminator.
|
||||||
|
|
||||||
|
|
||||||
Operator precedence
|
Operator precedence
|
||||||
@@ -239,3 +240,102 @@ enum enum_type /* enum_name is optional */
|
|||||||
|
|
||||||
/* use dot notation to select a component of a struct or union */
|
/* use dot notation to select a component of a struct or union */
|
||||||
|
|
||||||
|
|
||||||
|
Graphical enviroment
|
||||||
|
|
||||||
|
// Using a graphical program
|
||||||
|
|
||||||
|
//Example ------------------------------> Drawing a line
|
||||||
|
|
||||||
|
#include<stdio.h>
|
||||||
|
#include<conio.h>
|
||||||
|
#include<stdlib.h>
|
||||||
|
#include<graphics.h> // library to use graphical commands
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int gd=DETECT,gm; // Initialisation of graphics pointer.
|
||||||
|
|
||||||
|
initgraph(&gd,&gm,"c:\\turboc3\\bgi"); // starting the graphical enviroment
|
||||||
|
|
||||||
|
int x1,y1,x2,y2;
|
||||||
|
|
||||||
|
printf("Enter coordinates of first point");
|
||||||
|
scanf("%d%d",&x1,&y1);
|
||||||
|
printf("Enter coordinates of second point");
|
||||||
|
scanf("%d%d",&x2,&y2);
|
||||||
|
|
||||||
|
line( x1 , y1 , x2 , y2 ); // graphics command
|
||||||
|
|
||||||
|
closegraph(); // Closing of graphics pointer
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//Example ------------------------------> Drawing a circle
|
||||||
|
|
||||||
|
|
||||||
|
#include<stdio.h>
|
||||||
|
#include<conio.h>
|
||||||
|
#include<stdlib.h>
|
||||||
|
#include<graphics.h> // library to use graphical commands
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int gd=DETECT,gm; // Initialisation of graphics pointer.
|
||||||
|
|
||||||
|
initgraph(&gd,&gm,"c:\\turboc3\\bgi"); // starting the graphical enviroment
|
||||||
|
|
||||||
|
int x1,y1,r;
|
||||||
|
|
||||||
|
printf("Enter coordinates of center");
|
||||||
|
scanf("%d%d",&x1,&y1);
|
||||||
|
printf("Enter size of radius");
|
||||||
|
scanf("%d",&r);
|
||||||
|
|
||||||
|
circle( x1 , y1 , r ); // graphics command
|
||||||
|
|
||||||
|
closegraph(); // Closing of graphics pointer
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//Example ------------------------------> Drawing a rectangle
|
||||||
|
|
||||||
|
|
||||||
|
#include<stdio.h>
|
||||||
|
#include<conio.h>
|
||||||
|
#include<stdlib.h>
|
||||||
|
#include<graphics.h> // header file to use graphical commands
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int gd=DETECT,gm; // initialisation of graphics pointer.
|
||||||
|
|
||||||
|
initgraph(&gd,&gm,"c:\\turboc3\\bgi"); // starting the graphical enviroment
|
||||||
|
|
||||||
|
int x1,y1,r;
|
||||||
|
|
||||||
|
printf("Enter coordinates of first point");
|
||||||
|
scanf("%d%d",&x1,&y1);
|
||||||
|
printf("Enter coordinates of second point");
|
||||||
|
scanf("%d%d",&x2,&y2);
|
||||||
|
printf("Enter coordinates of third point");
|
||||||
|
scanf("%d%d",&x3,&y3);
|
||||||
|
printf("Enter coordinates of forth point");
|
||||||
|
scanf("%d%d",&x4,&y4);
|
||||||
|
|
||||||
|
line( x1 , y1 , x2 , y2 ); // graphics command
|
||||||
|
line( x2 , y2 , x3 , y3 );
|
||||||
|
line( x3 , y3 , x4 , y4 );
|
||||||
|
line( x4 , y4 , x1 , y1 );
|
||||||
|
|
||||||
|
|
||||||
|
closegraph(); // closing of graphics pointer
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
# DOCKER
|
# DOCKER
|
||||||
##############################################################################
|
##############################################################################
|
||||||
|
|
||||||
|
docker init # Creates Docker-related starter files
|
||||||
docker build -t friendlyname . # Create image using this directory's Dockerfile
|
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 -p 4000:80 friendlyname # Run "friendlyname" mapping port 4000 to 80
|
||||||
docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode
|
docker run -d -p 4000:80 friendlyname # Same thing, but in detached mode
|
||||||
|
|||||||
Reference in New Issue
Block a user