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);
...
|
2012/3/15-6/1 [Computer/SW/Languages, Computer/SW/OS/Windows] UID:54340 Activity:nil | 3/15 Why does MS put double-quotes around the '8' in Windows Server 8, like
the following?
- Windows 8
- Windows Server "8"
\_ Because when they didn't do it, code didn't see the '\0'
and went over? Looks better than '8','\0' *shrug*
...
|
2010/1/26-2/8 [Computer/HW/Memory] UID:53665 Activity:nil | 1/26 What's a good motherboard I can get that will fit in a 1U
case, with sata connectors, gig-e ethernet, and lots of
slots for RAM? I also don't want to have to use expensive
double buffered RAM. Can you tell I havne't bought a PC in
years? thanks.
\_ Buy a mac. Haven't you heard? if you don't buy a Mac people
...
|
|