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+):
...
|
2009/2/9-17 [Computer/SW/Languages/C_Cplusplus] UID:52547 Activity:nil | 2/9 I am new to signal handlers in C. I want to clean up some temp
files if my program is interrupted. I can catch the interrupt
just fine, but signal() doesn't take any args to pass to the
handler. So how can I pass it the information it needs to be
useful, like the names of the files to delete before exiting?
STFW doesn't yield much.
...
|
2009/1/20-26 [Computer/SW/Languages/Java, Computer/SW/Languages/Misc] UID:52425 Activity:nil | 1/20 I've been using tcsh as shell program tool (i know, bad shell to
do scripting). One thing I've noticed when I extract xml file
is that the variable type automatically change from
integer/string to... almost an array-like data structure when
the output of the xml key/value is more than one (it's more
like a string separated by space, but I was very impressed as
...
|
2008/4/2-6 [Computer/SW/Languages/C_Cplusplus] UID:49645 Activity:moderate | 4/2 Is there an interpreted version of C or C++ that can be used for
educational purposes? It doesn't have to be full-featured or
strictly adhere to the standards, but it's painful for students
to change a variable in a for loop and then wait for a compile
to see how it changes the result. Something really lightweight
would encourage them to play around a lot more and learn more in
...
|
|