Example #1
0
int dog(){

int x = 33;
  int y = 12;
  int z = 8;
   printf ( "Line69\nLine2\nLine3\n" );

  foo_function(&x, &y, &z);
}
Example #2
0
File: main.cpp Project: CCJY/coliru
int main() {
    foo_t reference;
    foo_function(reference, foo_t(), 3);
}