14 lines
185 B
C
14 lines
185 B
C
|
//
|
||
|
// add_nums.h
|
||
|
// CMath
|
||
|
//
|
||
|
// Created by TheAlgorithm476 on 28/03/2025.
|
||
|
//
|
||
|
|
||
|
#ifndef __ADD_NUMS_H
|
||
|
#define __ADD_NUMS_H
|
||
|
|
||
|
double add_nums(double a, double b);
|
||
|
|
||
|
#endif // __ADD_NUMS_H
|