Here's my examples connected with popular problems concerning C programming.
-
ipc_sysv-server.c and ipc_sysv-client.c - example of communications between two processes by IPC Sys V shared memory and semaphores.
-
myls.c - my own version of Unix ls program
-
pointers-array.c - example showing how pointers in C works
-
pointers-matrix.c - two-dimensional array in C as a pointer to pointer (example with matrix)
-
lexer_and_parser.zip - lexer and parser for arthmetic operations on rational numbers coded with flex and yacc