0
votes
5answers
58 views
C Function Skipped at Runtime
I have the following C code in a program:
printf("Test before print_foo()");
void print_foo(char board[ROW][COL]);
printf("Test after print_foo()");
where print_foo printf's the …
7
votes
10answers
292 views
Complicated C cast explanation
I'm trying to figure out what the following code in C does?
((void(*)())buf)();
where 'buf' is a char array.
0
votes
5answers
176 views
Visual C++ saying void function needs to return a value
Visual C++ is saying my void function needs a return value
I compiled this on my mac, and it worked perfectly, but now I am trying to compile this with Visual c++ (using windows 7 …
1
vote
1answer
92 views
What is the difference between void argument and no arguments in C? [closed]
Possible Duplicate:
Is there a difference between foo(void) and foo() in C++ or C
void foo1(void){...}
void foo2(){...}
Are foo1 and foo2 equivalent? If they are, which …
0
votes
4answers
269 views
C# - How do I Pass a delegate into another method?
I'm writing a class for managing my threading. How do I pass my method that needs threading into my helper class?
All that I'll be doing is creating a new thread and passing the m …
0
votes
4answers
296 views
C++ how to get the address stored in a void pointer?
hello, how can i get the memory address of the value a pointer points to? in my case it is a void pointer.
just assigning it to an uint gives me this error:
Error 1 error C2440: …
0
votes
3answers
214 views
Converting C++ function to Delphi: what to do with void* parameter?
I'm writing a DLL in Delphi using the below C++ example:
USERDLL_API double process_message (const char* pmessage, const void* param)
{
if (pmessage==NULL) { return 0; }
…
4
votes
7answers
1k views
Pointer to void in C++?
Hello, I'm reading some code in the Ogre3D implementation, and I can't understand what does a void*-typed variable could mean. What does a pointer to void means in C++?
8
votes
3answers
632 views
what is the point of void in javascript
I have seem some people put their code inside of the void function.
I have also seen this in hrefs: javascript:void(0) which doesnt seem any better than writing javascript:;
so, …
6
votes
5answers
573 views
What does “javascript:void(0)” mean?
<a href="javascript:void(0)" id="loginlink">login</a>
I've seen such hrefs many times, but I don't know what exactly that means.
5
votes
9answers
518 views
Is it bad practice to use return inside a void method?
Imagine the following code:
void DoThis()
{
if (!isValid) return;
DoThat();
}
void DoThat() {
Console.WriteLine("DoThat()");
}
Is it OK to use a return inside a vo …
1
vote
3answers
129 views
How does System.Void type specify a return value type for a method that does not return a value?
Is this the actual type methods without a return value return?
If so, where is the distinction that "nothing" is returned made?
1
vote
6answers
164 views
General programming - calling a non void method but not using value
This is general programming, but if it makes a difference, I'm using objective-c. Suppose there's a method that returns a value, and also performs some actions, but you don't care …
5
votes
2answers
214 views
in c: func(void) vs. func()
When a C function does not accept any arguments, does it have to be declared/defined with a "void" parameter by the language rules?
PC-Lint seems to have problems when there's not …
0
votes
2answers
163 views
Reading and assigning a void type parameter
I wrote two methods with a void type parameter:
procedure Method1(const MyVar; size: cardinal);
var
Arr: array of byte;
begin
SetLength(Arr, size);
{now copy the data from M …
