Category Archives: C

Got bored, wrote a C program.

I got bored so I did an exercise from The C Programming Language, exercise 2-3 to be exact:   #include <stdio.h> int htoi(char s[]);   int main() { char hexNum[] = "0x43fa"; char hexNum2[] = "0xfa"; char hexNum3[] = "0xa"; … Continue reading

Posted in C | Tagged | Leave a comment