|
Related Questions |
View Answer |
 |
How can I ensure that integer arithmetic doesnt overflow? |
View Answer |
 |
What are near and far pointers? |
View Answer |
 |
But I cant use all these nonstandard, system-dependent functions, because my program has to be ANSI compatible! |
View Answer |
 |
Why isnt any of this standardized in C? Any real program has to do some of these things. |
View Answer |
 |
How can I return multiple values from a function? |
View Answer |
 |
What is a good data structure to use for storing lines of text? |
View Answer |
 |
What is the right way to use errno? |
View Answer |
 |
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats? |
View Answer |
 |
If I have a char * variable pointing to the name of a function ... |
View Answer |
 |
How can I manipulate individual bits? |
View Answer |
 |
How can I determine whether a machines byte order is big-endian or little-endian? |
View Answer |
 |
How do I swap bytes? |
View Answer |
 |
How can I convert integers to binary or hexadecimal? |
View Answer |
 |
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary? |
View Answer |
 |
What is the most efficient way to count the number of bits which are set in an integer? |
View Answer |
 |
What is the best way of making my program efficient? |
View Answer |
 |
Are pointers really faster than arrays? |
View Answer |
 |
I have been replacing multiplications and divisions with shift operators, because shifting is more efficient. |
View Answer |
 |
People claim that optimizing compilers are good and that we no longer have to write things in assembler for speed |
View Answer |
 |
How can I swap two values without using a temporary? |
View Answer |