#include <stdio.h> main() { int result, y; int *x; y=5; x= &y; result=cppfunc(x); /* by reference */ if (y==6) printf("It worked!\n"); }
確定! 回上一頁