Articles dans la catégorie «coding» :
Split a C program
Codewars test example
argv & argc Scope Change
For a project that I am working on had to come up with a simple way to move argv/argc into a function for use with geopt in c.
This site has a great breakdown of how to build getopt C: getopt Example
Now I am looking at pushing it …
Radix and Patricia Trie
I am trying to get some thoughts in-line to start working on a Radix Tree with binary numbers, so the first step was to create a simple decimal to binary trial. I am still playing with the approach. The next step is to take the binary conversion and push it …
The Buzz of Fizz code
A friend was joking with me today about a simple test The BuzzFizz test, hmm?
It is a simple test to find in 100 iterations the multipliers of 3 & 5 and the combinations of the two.
I wrote up …
perl and a fork'd script
I had created an expect script the other day that was to gather some data, the script ran well but at times because of timing issues strange things seemed to happen with the data. So I broke the script apart and then built a launcher script in perl. This script …