"^" Operator

किसी संख्या में कोई घात लगाता है.

Syntax:

परिणाम = एक्सप्रेशन ^ घात

पैरामीटर

Result: Any numerical expression that contains the result of the number raised to a power.

Expression: Numerical value that you want to raise to a power.

Exponent: The value of the power that you want to raise the expression to.

उदाहरण:

Sub Example

    Print ( 12.345 ^ 23 )

    Print Exp ( 23 * Log( 12.345 ) ) REM लॉगरिद्म फ़ॉर्म कर रेज़ करता है

End Sub