14 lines
173 B
C++
14 lines
173 B
C++
#include <iostream>
|
|
|
|
void print(int x)
|
|
{
|
|
std::cout << x;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
constexpr float testVal { 5.5F };
|
|
print(static_cast<int>(testVal));
|
|
return 0;
|
|
}
|