Structure of s void function

void functionName() {
    // Step 1: Function header with return type "void" and function name "functionName"

    // Step 2: Opening curly brace to start the function body

    // Step 3: Function body containing the statements and logic

    // Step 4: Closing curly brace to end the function body
}