Posts by JOHNYE • 11 points
2 posts
-
0
votes2
answers6730
viewsA: How does the hash table implementation work?
A table hash is a structure that allows you to associate a key to a value and then have access to the value from its associated key. The key is transformed by a function into a position in the…
-
1
votes1
answer241
viewsA: Process Synchronization (Fork) - "Segmentation fault"
Well I discovered a small code error and you need to include in the -lpthread build, that would be the command in the terminal ($ gcc NOMEDOARQUIVO.c -lpthread). Follows code corrected: #include…