Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Archive
C Programming
How can #define printf like function?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="Shawn, post: 2402513"] You can use this technique to write macros that take variable number of arguments. #define MyFoo(a) foo a #define MyPrintf(a) printf a To use these macros, use two parenthesis instead of just one. MyFoo((__LINE__, "blah %d", 25)); MyPrintf(("This is a test: %d", 25)); - Shawn [/QUOTE]
Verification
Post reply
Forums
Archive
Archive
C Programming
How can #define printf like function?
Top