Einführung in die Programmierung Flashcards
1
Q
ls
A
shows a list of content inside the main file
2
Q
Symbol = “.”
A
current/actual Directory
3
Q
Symbol= “..”
A
top of the list directory
4
Q
Symbol= “~”
A
Synonymous for original/home file
5
Q
cd
A
changes into the original file of the user
6
Q
ls
A
show data from the current directory
7
Q
ls -la test
A
show data in a detailed insight
8
Q
g++ -c main.cpp
A
creates the object data from the data main.cpp
9
Q
g++ main.exe main.cpp
A
creates the executable data from main.cpp
10
Q
g++ -M mian.cpp
A
shows the interdependency of the data inside main.cpp
11
Q
-Wall
A
shows all the possible warnings
12
Q
vi name_data.cpp
A
Create a Quelltextdatei with an Editor
13
Q
g++ name_data.cpp
A
Transalte Quelltextdatei with a comiler
14
Q
A