previous | start | next

Example: call

The simplest call is to a function with no parameters.

int main()
{
   int n;
   n = f();
}

The call to f generates assembler code generated in main:

      call _f
   

The symbol _f will be replaced by an address of the code for function f.



previous | start | next