Tagged Questions

3
votes
6answers
1k views

Where is pow function defined and implemented in C?

I read that the pow(double, double) function is defined in "math.h" but I can't find its declaration. Does anybody know where this function declared? And where is it implemented in C? Reference: ...
2
votes
1answer
123 views

Recursively declare function in C language

got a question from adream307, I have no idea, what about yours? I want to declare a function like this: (we named this type of function as F) the return type of F is "void" the ...
2
votes
3answers
118 views

Declare a Structure and a Function Reference that use Each Other

I need to declare a (typedef'd) structure and a (typedef'd) function reference in pain old C. This is my code: typedef void (*monitor_calback)(monitor_data*, short int, short int, void*); typedef ...
2
votes
2answers
366 views

How to get list of declared functions with their data from php file?

I need to get list of functions with their contents (not only the function name) from php file. I tried to use regex but it has lots of limitations. it doesn't parse all types of functions. for ...
1
vote
3answers
451 views

Avoiding declaring private functions in class header files (C++)

(In C++) I have a class whose structure is declared in a header file. That header file is included in lots of source files, such that when I edit it I need to recompile lots of files. The class has a ...
1
vote
5answers
2k views

variable-size type declared outside of any function

when declaring the two dimensional array int random[height][width]; and then using it in a function void populate(int random[height][width], int x, int y) gives the error variable-size type ...
0
votes
1answer
137 views

MySQL Error 1415

I'm currently coding somewhat on MySQL and got a FUNCTION. For me the code looks fine, but MySQL throws a Error Code: 1415 Not allowed to return a result set from a function Error. Function: Cick ...
0
votes
4answers
128 views

How do I declare variables for multiple functions

Correct me if I am wrong, but isn't it possible to declare a variable right after the script tag, so that it can be used throughout that script? I tried this, and my functions are acting as if it ...