Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Peter Gerwinski
hp
Commits
31594c77
Commit
31594c77
authored
8 months ago
by
Peter Gerwinski
Browse files
Options
Downloads
Patches
Plain Diff
Vorbereitung 7.11.2024
parent
c620a815
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
20241107/hp-20241107.pdf
+0
-0
0 additions, 0 deletions
20241107/hp-20241107.pdf
20241107/hp-20241107.tex
+17
-17
17 additions, 17 deletions
20241107/hp-20241107.tex
with
17 additions
and
17 deletions
20241107/hp-20241107.pdf
+
0
−
0
View file @
31594c77
No preview for this file type
This diff is collapsed.
Click to expand it.
20241107/hp-20241107.tex
+
17
−
17
View file @
31594c77
...
@@ -58,10 +58,8 @@
...
@@ -58,10 +58,8 @@
\hfill\makebox
(0,0)[br]
{
\raisebox
{
2.25ex
}{
\url
{
https://gitlab.cvh-server.de/pgerwinski/hp
}}}
\hfill\makebox
(0,0)[br]
{
\raisebox
{
2.25ex
}{
\url
{
https://gitlab.cvh-server.de/pgerwinski/hp
}}}
\item
[\textbf{2}]
\textbf
{
Einführung in C
}
\item
[\textbf{2}]
\textbf
{
Einführung in C
}
\begin{itemize}
\begin{itemize}
\item
[2.1]
Hello, world!
\vspace
{
-1.5
\smallskipamount
}
\item
[2.2]
Programme compilieren und ausführen
\item
[\dots]
\item
[2.3]
Elementare Aus- und Eingabe
\item
[2.4]
Elementares Rechnen
\item
[2.5]
Verzweigungen
\item
[2.5]
Verzweigungen
\item
[2.6]
Schleifen
\item
[2.6]
Schleifen
\item
[2.7]
Strukturierte Programmierung
\item
[2.7]
Strukturierte Programmierung
...
@@ -73,7 +71,9 @@
...
@@ -73,7 +71,9 @@
\item
[2.11]
Arrays und Strings
\item
[2.11]
Arrays und Strings
\color
{
red
}
\color
{
red
}
\item
[2.12]
Strukturen
\item
[2.12]
Strukturen
\item
[\dots]
\item
[2.13]
Dateien und Fehlerbehandlung
\item
[2.14]
Parameter des Hauptprogramms
\item
[2.15]
String-Operationen
\end{itemize}
\end{itemize}
\color
{
gray
}
\color
{
gray
}
\item
[\textbf{3}]
\textbf
{
Bibliotheken
}
\item
[\textbf{3}]
\textbf
{
Bibliotheken
}
...
@@ -111,20 +111,20 @@
...
@@ -111,20 +111,20 @@
}
}
\end{lstlisting}
\end{lstlisting}
\pause
%
\pause
\vspace
{
-5cm
}
\hspace
{
5cm
}
%
\vspace
{
-5cm
}
\hspace
{
5cm
}
%
\begin{minipage}
{
7cm
}
\begin{minipage}
{
7cm
}
\begin{itemize}
\begin{itemize}
\item
\item
\lstinline
{
*a
}
ist eine
\lstinline
{
int
}
.
\lstinline
{
*a
}
ist eine
\lstinline
{
int
}
.
\pause
%
\pause
\item
\item
unärer Operator
\lstinline
{
*
}
:
\\
unärer Operator
\lstinline
{
*
}
:
\\
Pointer-Dererefenzierung
Pointer-Dererefenzierung
\pause
%
\pause
\arrowitem
\arrowitem
\lstinline
{
a
}
ist ein Zeiger (Pointer) auf eine
\lstinline
{
int
}
.
\lstinline
{
a
}
ist ein Zeiger (Pointer) auf eine
\lstinline
{
int
}
.
\pause
%
\pause
\bigskip
\bigskip
\item
\item
unärer Operator
\lstinline
{&}
: Adresse
unärer Operator
\lstinline
{&}
: Adresse
...
@@ -139,7 +139,7 @@
...
@@ -139,7 +139,7 @@
Ein Zeiger zeigt auf eine Variable
\only
<2->
{
und deren Nachbarn
}
.
Ein Zeiger zeigt auf eine Variable
\only
<2->
{
und deren Nachbarn
}
.
%
\bigskip
\bigskip
\pause
\pause
\pause
\pause
...
@@ -509,7 +509,7 @@
...
@@ -509,7 +509,7 @@
int main (void)
int main (void)
{
{
date today =
{
1
7, 1
0
, 202
2
}
;
date today =
{
7, 1
1
, 202
4
}
;
printf ("
%d.%d.%d\n", today.day, today.month, today.year);
printf ("
%d.%d.%d\n", today.day, today.month, today.year);
return 0;
return 0;
}
}
...
@@ -533,9 +533,9 @@
...
@@ -533,9 +533,9 @@
void set
_
date (date *d)
void set
_
date (date *d)
{
{
(*d).day =
1
7;
(*d).day = 7;
(*d).month = 1
0
;
(*d).month = 1
1
;
(*d).year = 202
2
;
(*d).year = 202
4
;
}
¿
}
¿
\end{lstlisting}
\end{lstlisting}
\end{minipage}
%
\end{minipage}
%
...
@@ -570,9 +570,9 @@
...
@@ -570,9 +570,9 @@
void set
_
date (date *d)
void set
_
date (date *d)
{
{
d->day =
1
7;
d->day = 7;
d->month = 1
0
;
d->month = 1
1
;
d->year = 202
2
;
d->year = 202
4
;
}
¿
}
¿
\end{lstlisting}
\end{lstlisting}
\end{minipage}
%
\end{minipage}
%
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment