У нас вы можете посмотреть бесплатно [SLOP100] C Programming - Introduction and Setup или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
Welcome to the start of Structured Learning of Programming (SLOP) 100. An introduction to programming fundamentals with the C language. This chapter covers a bit of general info about the C language. The various compiler options that exist, and how to setup your specific system for C development. Along with a very quick overview of the hello world program, later chapters will cover each aspect of the hello world program in greater detail.
Links and Code / Settings Snippets
Visual Studio & Visual Studio Code - https://visualstudio.microsoft.com/do...
CLion IDE - https://www.jetbrains.com/clion/
``c
#include stdio.h
int main() {
printf("Hello world!
");
return 0;
}
```
Visual Studio Code Settings
```json
{
"terminal.integrated.defaultProfile.windows": "VisualStudio2026",
"terminal.integrated.profiles.windows": {
"VisualStudio2026": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [
"/k",
"C:\\Program Files\\Microsoft Visual Studio\\18\\Community\\Common7\\Tools\\VsDevCmd.bat",
"-arch=amd64"
],
},
},
}
```
Socials
https://x.com/SlopNewsNetwork (main social media)
/ discord
https://www.ourdigitalsquare.com/@slo...
If you like what I'm doing you can tip here ↑
Chapters
0:00 Intro
0:08 General Info on C
1:56 Why you should learn C
2:42 Why you shouldn't learn C
3:53 Prerequisite Setup
7:02 Windows - Visual Studio Setup
8:56 Windows - Visual Studio Code Setup
11:14 Mac - Xcode Setup
11:33 Linux - Distro Setups
12:01 Hello world - quick overview
#cprogramming #programmingcourse