Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How can I call a function with an argument list built up at run time?
How can I call a function with an argument list built up at run time?
✍: Guest
There is no guaranteed or portable way to do this.
Instead of an actual argument list, you might consider passing an array of generic (void *) pointers. The called function can then step through the array, much like main() might step through argv. (Obviously this works only if you have control over all the called functions.)
2015-06-03, 1451👍, 0💬
Popular Posts:
When should the method invokeLater() be used? This method is used to ensure that Swing components ar...
What is AL.EXE and RESGEN.EXE? In the previous question you have seen how we can use resource files ...
How to set a cookie with the contents of a textbox ? Values stored in cookies may not have semicolon...
What Information Is Needed to Connect SQL*Plus an Oracle Server? - Oracle DBA FAQ - Introduction to ...
Can we have shared events ? Yes, you can have shared event’s note only shared methods can raise shar...