arbitrary number of parameters in function

Started by
1 comment, last by taybrin 22 years, 6 months ago
in C++ if i have a function void foo(int x, ...) in the body of the function how do i access the arbitrary number of parameters passed into foo. I figure it is an array somewhere similar to args[], but I am not quite sure. ANy help would be greatly appreciated. thanks
"PC Load Letter, what the F*Ck's that" ~Office Space
Advertisement
I haven''t used them before, but I believe a quick lookup of va_list, va_arg, va_start and va_end on MSDN should do the trick.

Hope that was of some help
haha, yep you are right, it took awhile, but I found the answer online on someone''s random C++ tutorial, thanks though . . .

"PC Load Letter, what the F*Ck's that" ~Office Space

This topic is closed to new replies.

Advertisement