Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "stdafx.h"
- #include <stdio.h>
- #include <locale.h>
- void print_hello();
- int _tmain(int argc, _TCHAR* argv[])
- {
- setlocale(LC_ALL, "Ukrainian");
- print_hello();
- return 0;
- }
- void print_hello()
- {
- int iYear = 2014;
- _tprintf(_T("Мові Сі вже %d р."), iYear - 1972);
- return;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement