Advertisement
Infra_HDC

arrays.c CL VS2017 compile and test run

May 3rd, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. **********************************************************************
  2. ** Visual Studio 2017 Developer Command Prompt v15.9.11
  3. ** Copyright (c) 2017 Microsoft Corporation
  4. **********************************************************************
  5.  
  6. C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional>cd C:\Users\User\source\repos\3
  7.  
  8. C:\Users\User\source\repos\3>cl arrays.c
  9. Microsoft (R) C/C++ Optimizing Compiler Version 19.16.27030.1 for x86
  10. Copyright (C) Microsoft Corporation. All rights reserved.
  11.  
  12. arrays.c
  13. Microsoft (R) Incremental Linker Version 14.16.27030.1
  14. Copyright (C) Microsoft Corporation. All rights reserved.
  15.  
  16. /out:arrays.exe
  17. arrays.obj
  18.  
  19. C:\Users\User\source\repos\3>dir
  20. Том в устройстве C не имеет метки.
  21. Серийный номер тома: DA95-312B
  22.  
  23. Содержимое папки C:\Users\User\source\repos\3
  24.  
  25. 03.05.2019 20:03 <DIR> .
  26. 03.05.2019 20:03 <DIR> ..
  27. 03.05.2019 19:54 2 463 arrays.c
  28. 03.05.2019 20:03 125 952 arrays.exe
  29. 03.05.2019 20:03 4 182 arrays.obj
  30. 3 файлов 132 597 байт
  31. 2 папок 101 451 202 560 байт свободно
  32.  
  33. C:\Users\User\source\repos\3>arrays.exe
  34. Hello, World!
  35. Use single-bit encoding, please!
  36. Enter strings content. Maximum strings length is 100 characters.
  37. Input will stopped after 100 strings input or the "END" phrase instead of string content.
  38. s[0]: 1
  39. s[1]: 22
  40. s[2]: 333
  41. s[3]: 4444
  42. s[4]: END
  43. Strings was entered: 4, go to data processing...
  44. Strings array after sorting:
  45. s[0] = 4444
  46. s[1] = 333
  47. s[2] = 22
  48. s[3] = 1
  49. The result: 4444333221
  50.  
  51. C:\Users\User\source\repos\3>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement