mirror of
https://github.com/VictorEijkhout/TheArtOfHPC_vol3_cppf08programming.git
synced 2026-01-24 22:44:48 +09:00
10 lines
110 B
C++
10 lines
110 B
C++
int somefunc( float * ) {
|
|
return 5;
|
|
}
|
|
|
|
int main() {
|
|
float x=1;
|
|
int result = somefunc(&x);
|
|
return 0;
|
|
}
|