#include void myprint_(int *); int main(int argc, char argv[]) { int i = 1234; printf("Calling myprint_(int &)...\n", &i); myprint_(&i); }