This topic has not yet been rated - Rate this topic

Calling Example: Function Prototype and Call

The following example shows the results of making a function call using various calling conventions.

This example is based on the following function skeleton. Replace calltype with the appropriate calling convention.

void    calltype MyFunc( char c, short s, int i, double f );
.
.
.
void    MyFunc( char c, short s, int i, double f )
    {
    .
    .
    .
    }
.
.
.
MyFunc ('x', 12, 8192, 2.7183);

For more information, see Results of Calling Example.

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ