Top "Void" questions

An incomplete type used as syntactic place-holder for the return type of a method/function when no value is returned.

What's the point of const void?

Apparently, it is possible to declare a function returning const void: const void foo() { } g++ seems to consider the const …

c++ c function constants void
Can a C# lambda expression ever return void?

I have the following method, and I want to know if there is anything that can go in place default(…

c# .net syntax lambda void
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 …

c function void lint
"Unexpected token: Void" error in processing IDE caused by for loop regardless of position?

I'm currently trying to code a simple audio delay sketch in the processing IDE. I keep getting an "unexpected token: …

java audio delay void processing-ide
Using void in functions without parameter?

In C++ using void in a function with no parameter, for example: class WinMessage { public: BOOL Translate(void); }; is redundant, …

c++ function methods void
Object[] cannot be cast to Void[] in AsyncTask

I'm getting this error inside an extended asynctask, but i'm really sure that Object[] IS a Void[]. This is my …

java android void
How to delete void pointer?

Is there anything wrong when deleting an object like this in C++? MyCls* c = new MyCls(); void* p = (void*)c; …

c++ pointers void delete-operator
PostgreSQL functions returning void

Functions written in PL/pgSQL or SQL can be defined as RETURNS void. I recently stumbled upon an odd difference …

postgresql stored-procedures null plpgsql void
What does—or did—"volatile void function( ... )" do?

I've seen How many usage does "volatile" keyword have in C++ function, from grammar perspective? about use of the volatile …

c function aes volatile void
Call a void* as a function without declaring a function pointer

I've searched but couldn't find any results (my terminology may be off) so forgive me if this has been asked …

c function pointers void