rusi/test_ru/struct.c

15 lines
327 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.

// struct.c - Проверка типа struct
структ Точка {
цел икс;
цел игрек;
};
цел главн(){
структ Точка ю;
ю.икс = 10;
ю.игрек = 20;
если (ю.икс == 10 && ю.игрек == 20) {
возврат 0;
}
возврат 1;
}