У нас вы можете посмотреть бесплатно Using Vim to code in C on Linux - A demonstration for beginners. или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
To enter Vim on the cmd line, type vim followed by the name of your code, and be sure to put .c at the end of your file. This tells Vim that you are coding in C, which needs to be compiled in order to run. When you are finished, press esc + :wq to save and exit Vim. The final steps in using the GNU Compiler, is to type gcc yourcode.c -o yourcompiledcode. This command says, compile your C code, then output it to a compiled executable. Lastly, to execute your code, type ./compiledcode and press enter.