fork download
  1. #include <stdio.h>
  2. #include <wchar.h>
  3.  
  4. #define BUILD_NR "49"
  5.  
  6. #define _T(A) L##A
  7.  
  8. typedef unsigned char BYTE;
  9. typedef wchar_t WORD;
  10.  
  11. #define USB_DESCRIPTOR_STRING 0
  12.  
  13. struct{BYTE bLength;BYTE bDscType;wchar_t string[29];}sd001={
  14. sizeof(sd001),USB_DESCRIPTOR_STRING, _T("Version " BUILD_NR)
  15. };
  16.  
  17. int main(void) {
  18. // your code goes here
  19.  
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0s 2004KB
stdin
Standard input is empty
stdout
Standard output is empty