Tagged Questions

2
votes
1answer
98 views

Dynamic creation of function names with macros

I am trying to create a macro (C/C++) to dynamically create a function. Basically I have a function whose name varies in the "MyClassA" part. Also the arguements should be passed through the macro ...
0
votes
2answers
52 views

Is pro*c/c++ support “describe [schema.]object” statement?

I can't prepare this statement in my pc code. When I running this statement always show out "SQLERROR: ORA CODE: -900 MSG: ORA-00900: invalid SQL statement". Can there are any way to exec this ...
0
votes
2answers
205 views

How to initialize a array with precompiler In C Programming Language

I want to initialize a array. But ı have two different initial values in compile time. So I want to do it in precompile time. My code is static const U8 userFont[8][8] = { #if (LCD_LANGUAGE == ...