How can i pass (and access) using C, not c++, variable parameters into a function?
void foo(char* mandatory_param, char* optional_param, char* optional_param2...)
thanks
/fmsf
|
|
Use You need to use For more information, see http://www.acm.uiuc.edu/webmonkeys/book/c_guide/2.10.html |
|||||||||||
|
|
It sounds like you are looking for
|
|||||
|
|
Read about Variable Arguments in C |
|||||||||||||||||
|
|
|||
|
|
|
In a language that does not support optional parameters directly, there are a few ways to achieve a similar effect. I will list them in order from the least versatile to the most:
)
and then make your method call take in a single argument:
This way, as needs change, you can add parameters to fooArgs without breaking anything. |
|||||||||||||
|