Advertisement
dllbridge

Untitled

Dec 14th, 2024
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.37 KB | None | 0 0
  1.  
  2.  
  3.  
  4. #include <stdio.h>
  5.  
  6.  
  7. struct AAA
  8. {
  9.        
  10.       int  nSec;     //  Секунды
  11.       int  nMin;     //   Минуты
  12.       int nHour;     //     Часы  
  13. };
  14.  
  15.  
  16. //////////////////////////////////////////////////////////
  17. int main()
  18. {
  19.    
  20.     int n = 9;
  21.    
  22.     AAA a1;
  23.    
  24.     a1.nSec  = 21;
  25.     a1.nMin  =  3;
  26.     a1.nHour =  1;    
  27. }
  28.  
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement