Installing C/C++/Java/JavaScript/Python/Dotnet in Ubuntu OS and Developing using VS Code | Tamil

Опубликовано: 04 Октябрь 2024
на канале: Learn with Professor
231
10

Installing Visual Studio Code/C/C++/Java/JavaScript/Python/Dotnet in Ubuntu OS and Developing using VSCode Editor

#tamilrepository #தமிழ்க்கருவூலம் #vscode #gcc #dotnet #java #python #javascript

Chapters

00:00 - Introduction
00:53 - Installing Visual Studio Code Editor
01:53 - Customizing Visual Studio Code Editor
04:11 - Developing C/C++ Program
06:40 - Developing Python Program
08:07 - Developing Java Program
09:59 - Developing JavaScript Program
12:21 - Developing Dotnet C# Program
14:21 - Conclusion

Installing C/C++
sudo apt install build-essential
g++ -v

Runnung C++ Code
g++ demo.cpp -o output
./output

Runnung C Code
gcc demo.cpp -o output
./output

Installing Python3
python3

Running Python Script
python3 demo.py

Install OpenJDK
sudo apt install default-jdk
java --version

Running Java Program
java Demo.java
javac Demo

Install NodeJS and NPM
sudo apt install nodejs npm

Running JavaScript
node demo.js

Install Dotnet
wget https://packages.microsoft.com/config... -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb

sudo apt-get update; \
sudo apt-get install -y apt-transport-https && \
sudo apt-get update && \
sudo apt-get install -y dotnet-sdk-3.1

Creating and Running C# Console App
dotnet new console -o myApp
cd myApp
dotnet run