forked from 131/lab3_test
8 lines
101 B
C
8 lines
101 B
C
#pragma once
|
|
#include <stdbool.h>
|
|
|
|
int fibonacci(int nitem);
|
|
|
|
bool sum_is_odd(int *arr, int arrsz);
|
|
|