-1
votes
VisualC++ 6.0 with unsigned long long and sprintf
Apparently, you did not assign additionaltext to the necessary char * (string). Note that the long int was processed, the comma was copied and only the …
0
votes
Any Tools to Catch Silly Mistakes in C Code?
In this (old) version of How to Shoot Yourself In the Foot, and in many other versions around the web, C is …
11
votes
Pointer question
You need to assign the pointer to a memory location, not arbitrary value (10).
int cell = 10;
int *a = &cell; // a points to address of cell
*a = 100; // content …
0
votes
x86 Assembly Keyboard Input
Just an idea: looking at GRUB for DOS source (asm.s), the console_checkkey function is using BIOS INT 16H Function …
0
votes
Explanation of an algorithm to set, clear and test a single bit
Bitwise operation and the leading paragraphs of Ma …
3
votes
64 bit division
A more general idea is to use a multi-precision library, like GMP.
GMP is a free library for arbitrary precision arithmetic, o …
4
votes
Good Data Structures text book
The ancient Algorithms + Data Structures = Programs by Niklaus Wirth is recommended by some (see customer reviews on …
2
votes
Creating a web server in pure C
To get some hints as to how a real HTTP server is written in C, you can look at the lighttpd source.
lighttpd (pronounced …
1
vote
How do you ensure that you as programmer have written quality C code?
A previous discussion, what-are-some-good-resources-for-learning-c-beyond-kr, might poi …
0
votes
Should I disable the C compiler signed/unsigned mismatch warning?
Just one of the many ways in which C allows you to shoot yourself in the foot …
4
votes
C/C++ check if one bit is set in, i.e. int variable
According to this description of bit-fields, there is a method for defining and accessing fields directly. The example in this en …
0
votes
What does it mean to duplicate a stack?
The Stack-oriented programming language entry in Wikipedia contains a description of stack manipulation …
0
votes
regular expression help with converting exp1^exp2 to pow(exp1, exp2)
See recent discussion function-parser-with-regex-in-python (one of many similar discussions). Then follo …
1
vote
As a programmer with no CS degree, do I have to learn C++ extensively?
Listen or read SO podcast 44, where Joel plays his favorite song …
2
votes
Which editor to use? for coding c/c++.
Cream:: a modern configuration of the Vim text editor
Cream shapes Vim into an interface you probab …
