mirror of
				https://github.com/janbodnar/Windows-API-examples.git
				synced 2025-10-31 00:47:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			226 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			226 B
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <windows.h>
 | |
| #include <wchar.h>
 | |
| 
 | |
| int wmain(void) {
 | |
| 
 | |
|     SYSTEMTIME st = {0};
 | |
|   
 | |
|     GetSystemTime(&st);
 | |
|   
 | |
|     wprintf(L"The UTC time is: %02d:%02d:%02d\n", 
 | |
|         st.wHour, st.wMinute, st.wSecond);
 | |
| 
 | |
|     return 0;
 | |
| }
 |