Skip to content

Commit

Permalink
Update example.c
Browse files Browse the repository at this point in the history
Signed-off-by: Gunj Joshi <[email protected]>
  • Loading branch information
gunjjoshi authored Oct 23, 2024
1 parent 0e3b29b commit 36d5959
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ int main( void ) {
int i;
for ( i = 0; i < 10; i++ ) {
v = stdlib_base_nanmax( x[ i ], y[ i ] );
printf( "x[ %d ]: %f, y[ %d ]: %f, nanmax( x[ %d ], y[ %d ] ): %f\n", i, x[ i ], i, y[ i ], i, i, v );
printf( "x[ %d ]: %lf, y[ %d ]: %lf, nanmax( x[ %d ], y[ %d ] ): %lf\n", i, x[ i ], i, y[ i ], i, i, v );
}
}

0 comments on commit 36d5959

Please sign in to comment.