Untitled
unknown
c_cpp
a year ago
253 B
4
Indexable
#include <iostream> void greeting() { std::cout << "привет, чувак\n"; return; } void farewell() { std::cout << "пока, чувак\n"; return; } int main() { setlocale(LC_ALL, "Russian"); greeting(); farewell(); }
Editor is loading...
Leave a Comment