rusi/test_ru/inline.c

12 lines
292 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.

// inline.c - Проверка ключевого слова inline
инлайн цел квадрат(цел х) {
возврат х * х;
}
цел главн(){
цел рез = квадрат(5);
если (рез == 25) {
возврат 0;
}
возврат 1;
}