INFO: Two Syntaxes for Calling Functions with Pointers

Last reviewed: August 26, 1997
Article ID: Q32109

The information in this article applies to:
  • Microsoft C for MS-DOS, versions 5.1, 6.0, 6.0a, 6.0ax
  • Microsoft C/C++ for MS-DOS, version 7.0
  • Microsoft Visual C++ for Windows, versions 1.0, 1.5
  • Microsoft Visual C++ 32-bit Edition, versions 1.0, 2.0, 4.0, 5.0

SUMMARY

The source code below contains what appears to be an improper use of a pointer to a function. However, the code is correct. There are two ways to call a function when using a pointer to a function:

   (*pointer_to_function)();

-or-

   pointer_to_function();

The behavior exhibited in the sample code is expected. The proposed ANSI Standard (Document Number X3J11/88-002, January 11, 1988) allows a function to be called through a pointer with the following syntax

   (*pointer_to_function)();

in addition to the following non-traditional syntax:

   pointer_to_function();

The text below is quoted from page 41 of the "Rationale for Draft Proposed American National Standard for Information Systems Programming Language C" (sec. 3.3.2.2, "Function calls"):

   The latter construct, not sanctioned in the Base Document, appears
   in some present versions of C, is unambiguous, invalidates no old
   code, and can be an important shorthand.

MORE INFORMATION

The sample code below demonstrates this method.

Sample Code

   /*
    * Compile options needed: none
    */

   #include <stdio.h>

   void main(void)
   {
      void ftn(void);
      void (*ptr_to_ftn)(void);

      ptr_to_ftn = ftn;   // The pointer is correctly assigned
                          // the address of 'ftn()'

      printf("\nCalling the function\n\n");

      (ptr_to_ftn)();     // This is not traditional syntax for
                          // a call through a function pointer

      printf("back to main\n");
   }

   void ftn(void)
   {
      printf("in the function\n\n");
   }
Keywords          : CLngIss kbfasttip
Version           : MS-DOS:5.1,6.0,6.00a,6.00ax,7.0; WINDOWS:1.0,1.5; WINDOWS  NT:1.0,2.0,4.0,5.0
Platform          : MS-DOS NT WINDOWS
Issue type        : kbinfo


================================================================================


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: August 26, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.