When is the Void Keyword used in a function in C programming?
The keyword “void” is a data type that literally represents no data at all. The most obvious use of this is a function that returns nothing:
void PrintHello()
{
printf("Hello");
return; // the function does "return", but no value is returned
}
Here a function is declared, and all