6
votes
4answers
171 views
why a[n] is accepted in c during runtime?
why can we do this in c?
int n;
scanf("%d",&n);
int a[n];
I thought array is located memory during load time but seems like the above example works during runtime.
Do I misunderstand any thing? …
3
votes
5answers
183 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:
…
1
vote
4answers
193 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
192 views
How do i declare and use a C# object in an .ASPX file?
Hey guys,
i am making a website using asp.net and C# and well i got stuck at the first hurdle, i found out that to use code you use the <% %> with asp but i dont get how i would create an object …
3
votes
7answers
494 views
Is there a strict definition for the words define, declare and assign?
I tend to use the words define, declare and assign interchangeably but this seems to cause offense to some people. Is this justified? Should I only use the word declare for the first time I assign to …
0
votes
1answer
297 views
dojo: inheritance with default value - the mixin doesn’t happen…
I wish to declare a new dojo class inheriting from an existing dojo class, but with my own choice of default values for the class's properties. (The user can still override those values.)
I am …
4
votes
10answers
692 views
Defining const values in C
I have a C project where all code is organized in *.c/*.h file pairs, and I need to define a constant value in one file, which will be however also be used in other files. How should I declare and …
1
vote
5answers
1k views
How to call a Delphi DLL from VB6
Given the following Delphil DLL declaration
function csd_HandleData(aBuf: PChar; aLen: integer): integer; stdcall;
what would be the VB6 declaration to use it?
I've tried a variety of …
