Search Results: Stdlib.h

Weiterleitung nach:


C-Standard-Bibliothek
Kamis, 2025-11-27 14:28:48

signal.h Signalbehandlung stdarg.h Argumentbehandlung für variadische Funktionen stddef.h zusätzliche Typdefinitionen stdio.h Ein- und Ausgabe stdlib.h vermischte...

Click to read more »
Pipe (Informatik)
Sabtu, 2024-11-16 21:16:23

Shellanweisung who | sort #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <sys/wait.h> int main(void){ // pipe_verbindung[0] zum...

Click to read more »
Math.h
Selasa, 2023-10-17 03:00:31

Header-Datei stdlib.h vertreten. In den Normen bis einschließlich C95 waren die folgenden Funktionen deklariert. Mit der Norm C99 wurde math.h um die folgenden...

Click to read more »
Zyklische Redundanzprüfung
Sabtu, 2026-02-14 18:42:24

des 8 Bit langen Datenstroms 10001100: #include <stdio.h> #include <stdlib.h> #include <stdint.h> /* typedef unsigned __int32 uint32_t; => für MS-VS */...

Click to read more »
XCB
Senin, 2024-03-04 00:21:24

mit: gcc -o xcbtest xcbtest.c -lxcb */ #include <xcb/xcb.h> #include <stdio.h> #include <stdlib.h> int main() { xcb_connection_t *c; xcb_screen_t *s; xcb_window_t...

Click to read more »
Hough-Transformation
Sabtu, 2025-05-10 13:17:49

Hough-Transformation. #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> #define _USE_MATH_DEFINES #include <math.h> #define GR(X,Y)...

Click to read more »
Kellerautomat
Kamis, 2025-04-17 02:53:05

schließende Klammer zu viel gegeben ist. #include <stdlib.h> #include <stdio.h> #include <string.h> #define POP -1 #define ACCEPT -2 #define ERROR -3...

Click to read more »
Speicherleck
Kamis, 2025-05-15 21:12:26

folgende Beispiel zeigt die Entstehung solch eines Speicherlecks: #include <stdlib.h> int main(void) { int *a; /* Zeiger auf einen als Ganzzahl interpretierten...

Click to read more »
Zombie-Prozess
Jumat, 2022-09-23 20:21:43

folgenden Codebeispiel zu sehen ist: #include <sys/wait.h> #include <stdlib.h> #include <unistd.h> int main(void){ pid_t pids[10]; // Platz für 10 Prozess-IDs...

Click to read more »
Liste von Zufallszahlengeneratoren
Minggu, 2026-06-14 00:18:15

Pseudozufallszahlengeneratoren bestehen alle BigCrush-Tests der TestU01-Software-Suite, d. h. die generierte pseudozufällige Zahlenfolge ist von einer echt zufälligen...

Click to read more »
Symlink-Schwachstelle
Kamis, 2018-09-06 18:44:45

Dateien sollte die Funktion mkstemp(3), in der C-Standard-Bibliothek (stdlib.h), genutzt werden. Für Shell-Skripte gibt es das Programm mktemp. Wenn der...

Click to read more »
Multiplikative Methode
Sabtu, 2020-05-02 15:45:46

in der Programmiersprache C: #include <stdio.h> #include <stdlib.h> #include <math.h> #include <inttypes.h> static const double s = 2654435769.0, w = 4294967296...

Click to read more »
Steinscher Algorithmus
Senin, 2025-08-11 01:12:39

POSIX-Standardfunktion ffs (find first set): #include <stdlib.h> /* für abs() */ #include <strings.h> /* für ffs() */ int ggt(int a, int b) { int c; if (a...

Click to read more »
Fork (Unix)
Rabu, 2025-06-11 03:16:05

individuelle Prozess-ID aus. #include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <sys/types.h> int main () { int i, j; pid_t pid; pid = fork();...

Click to read more »
Kongruenzgenerator
Senin, 2025-01-13 03:19:37

Pseudozufallszahlen verwendet, z. B. in C/C++ in der Funktion rand() in der Headerdatei stdlib.h. In der Kryptographie dagegen kommt der lineare Kongruenzgenerator nicht...

Click to read more »
C-Präprozessor
Jumat, 2026-07-17 00:20:04

__LINE__ (aktuelle Zeile innerhalb der Datei): #include <stdio.h> #include <stdlib.h> #define MELDUNG(text) fprintf(stderr, \ "Datei [%s], Zeile %d:...

Click to read more »
Trampolin (Informatik)
Jumat, 2025-07-25 04:10:57

ist, dann ist die Funktion modsort leicht zu implementieren: #include <stdlib.h> /* Hilfsfunktion zum Vergleich */ static int modvergleich(unsigned int...

Click to read more »
GNU Readline
Selasa, 2025-08-12 05:35:20

zu ändern. #include <stdlib.h> #include <stdio.h> #include <unistd.h> #include <readline/readline.h> #include <readline/history.h> int main() { char* input...

Click to read more »
Hase-Igel-Algorithmus
Rabu, 2026-01-28 19:52:51

einmal durchlaufen, der Hase jedoch zweimal. C # include <stdio.h> # include <stdlib.h> int main() { struct liste { struct liste *next; } *root, *el, *hase...

Click to read more »
Verzögerte Initialisierung
Selasa, 2024-04-23 03:50:25

_FRUIT_INCLUDED_ */ fruit.c: #include <string.h> #include <stdlib.h> #include <stddef.h> #include <stdio.h> #include "fruit.h" static struct fruit *fruit_list; static...

Click to read more »
Ruby (Programmiersprache)
Rabu, 2026-07-29 15:33:44

JavaScript. Es handelt sich um eine Implementierung der Ruby-Corelib und Stdlib sowie den zugehörigen Gems. Mit Opal lassen sich clientseitige Webanwendungen...

Click to read more »
Monade (Informatik)
Selasa, 2026-08-11 05:04:32

2022 Records as structures. ab etwa 1:43:00 h. downloads.haskell.org https://agda.github.io/agda-stdlib/ Agda Standardbibliothek (abgerufen am 9. August...

Click to read more »
Lua
Sabtu, 2026-05-30 22:40:30

während Variablen und Funktionen in beiden Richtungen erreichbar bleiben (d. h. eine Funktion in Lua kann eine Funktion in C/C++ aufrufen und umgekehrt)...

Click to read more »