Answers for "void c programming"

C
3

what is void in c

FUNCTION DECLARATION

when void is used as a function return type,
it indicates that the function does not return a value.


POINTER DECLERATION

When void appears in a pointer declaration,
it specifies that the pointer is universal.


FUNCTION PARAMETER(IN C ONLY)
When used in a function's parameter list, 
void indicates that the function takes no parameters.
Posted by: Guest on August-30-2020
0

void c programming

FUNCTION DECLARATION

when void is used as a function return type,
it indicates that the function does not return a value.


POINTER DECLERATION

When void appears in a pointer declaration,
it specifies that the pointer is universal.
Posted by: Guest on April-05-2021

Code answers related to "C"

Browse Popular Code Answers by Language