Tagged Questions
32
votes
19answers
2k views
Can knowing C actually hurt the code you write in higher level languages?
The question seems settled, beaten to death even. Smart people have said smart things on the subject. To be a really good programmer, you need to know C.
Or do you?
I was enlightened twice this ...
3
votes
11answers
620 views
How to write more efficient code
Question of the century? I basically want to know which would be more efficient if I wrote this code as several different variables or if I used small arrays.
int x = 34;
int y = 28;
int z = 293;
...
0
votes
3answers
86 views
What is a good size for medium sized memory allocations?
For a serializing system, I need to allocate buffers to write data into. The size needed is not known in advance, so the basic pattern is to malloc N bytes and use realloc if more is needed. The size ...
0
votes
8answers
181 views
which bit-manipulation method is more efficient in C?
Base on the answers i've got, i think this problem is kind of meaningless. Thanks for all your kind replies!
i want to get a binary number with its rightmost j bits set to 1 and others set to be 0. ...