rusi/test_ru/time_ru.c

11 lines
332 B
C
Raw Permalink 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.

// time_ru.c - Проверка макроса __ВРЕМЯ__
#включить <stdio.h>
цел главн() {
символ *время = __ВРЕМЯ__;
// Просто проверяем, что строка не пустая
если (время[0] != '\0') {
возврат 0;
}
возврат 1;
}