Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

14 строки
304 B
C++

#ifndef LAB04_H_INCLUDED
#define LAB04_H_INCLUDED
#include <iostream>
#include <iomanip>
#pragma once
void print_in_hex(uint8_t byte);
void print_in_hex(const void* data, size_t size);
void print_in_binary(uint8_t byte);
void print_in_binary(const void* data, size_t size);
#endif // LAB04_H_INCLUDED