Skip to content

Commit 9791340

Browse files
committed
refactor: remove the print statements (initial ones) in example.c
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: na - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: na - task: run_c_benchmarks status: na - task: run_cpp_benchmarks status: na - task: run_fortran_benchmarks status: na - task: run_javascript_benchmarks status: na - task: run_julia_benchmarks status: na - task: run_python_benchmarks status: na - task: run_r_benchmarks status: na - task: run_javascript_tests status: na ---
1 parent 918c94a commit 9791340

File tree

1 file changed

+0
-4
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/hypergeometric/variance/examples/c

1 file changed

+0
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/hypergeometric/variance/examples/c/example.c

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ int main( void ) {
3333
double v;
3434
int i;
3535

36-
printf( "Variance of the hypergeometric distribution:\n" );
37-
printf( "N\t\tK\t\tn\t\tVariance\n" );
38-
printf( "-------------------------------------------------" );
39-
4036
for ( i = 0; i < 10; i++ ) {
4137
N = stdlib_base_round(random_uniform(0.0, 20.0));
4238
K = stdlib_base_round(random_uniform(0.0, N));

0 commit comments

Comments
 (0)