rusi/test_ru/union.c

14 lines
258 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.

// union.c - Проверка типа union
объед Данные {
цел i;
символ c;
};
цел главн(){
объед Данные d;
d.i = 65;
если (d.c == 'A') {
возврат 0;
}
возврат 1;
}