Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- struct AAA
- {
- int nSec; // Секунды
- int nMin; // Минуты
- int nHour; // Часы
- };
- //////////////////////////////////////////////////////////
- int main()
- {
- int n = 9;
- AAA a1;
- a1.nSec = 21;
- a1.nMin = 3;
- a1.nHour = 1;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement