It can be done via its address, for example:
void function (void (*callback)(void))
{
(*callback)();
}
Chat with our AI personalities
Logarithmic Function
It is DOS-specific function in TurboC to call an interrupt. See the built-in help.
powers
A number without a decimal would be a number without a fraction - hence it would be a "whole number".
Program: include "emu8086.inc" ORG 100h MOV AX, 0004H //Move 1st 16-bit number to AX. MOV BX, FFFEH //Move 2nd 16-bit number to BX. IMUL BX //Multiply BX with AX and the result will be in DX:AX. CALL PRINT_NUM //Print the result. RET //Return. DEFINE_PRINT_NUM //Declare function. END