2012/7/19-11/7 [Computer/SW/Languages/C_Cplusplus] UID:54439 Activity:nil | 7/19 In C or C++, how do I write the code of a function with variable
number of parameters in order to pass the variable parameters to
another function that also has variable number of parameters? Thanks.
\_ The usual way (works on gcc 3.0+, Visual Studio 2005+):
#define foo(fmt, ...) printf(fmt, ##__VA_ARGS__)
The cool new way (works on gcc 4.3+):
...
|
2012/7/23-29 [Computer/SW/Languages] UID:54443 Activity:nil | 7/23 Hey mconst, check this out:
int main()
{
int i_value = 16777217;
float f_value = 16777217.0;
printf("The integer is: %d\n", i_value);
...
|
2011/2/5-19 [Computer/SW/Languages/C_Cplusplus] UID:54027 Activity:nil | 2/4 random C programming/linker fu question. If I have
int main() { printf("%s is at this adddr %p\n", "strlen", strlen); }
and soda's /proc/sys/kernel/randomize_va_space is 2 (eg; on)
why is strlen (or any other libc fn) at the same address every time?
\_ I don't pretend to actually know the right answer to this, but
could it have something to do with shared libraries?
...
|
2009/4/6-13 [Computer/SW/Languages/C_Cplusplus] UID:52806 Activity:moderate | 4/6 In C++, if there are several instances of an object, and for
debugging purpose I want to see which instance of an object it is, I
can do 'printf("%p", pObj);' to print out the address of the object.
Is there any way to do something similar in C#? Thanks.
\_ CLR objects can get shuffled around in memory nondeterministically.
Using the address or something like that won't work for identifying
...
|
|