geekbrains_cpp_difficult_mo.../lesson_3/exercise_1.hpp

16 lines
221 B
C++
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* exercise_1.hpp
*
* Created on: 29 сент. 2021 г.
* Author: alexander
*/
#pragma once
#include <list>
void printList(std::list<float> &l);
void pushBackList(std::list<float> &l);
void exercise_1();