Writing Your First Code in 3 Different Languages| Get A high paying job in 2024
What is a Programing Language
Programing Language is the way or the method by which we can design a Program for any device it can be Android, IOS, Windows or Mac. Creating Different Programs which can lead you to get a High paying job starts form Basics. To create Your First Program you need to Learn a Programing Language. There are different Programing languages available in the Market Today, The First Programing language used to make Programing language is C then so Many different Programing Language Emerged form C++ to Python, Ruby and Many More.
Effect of Programing Language
People are Now moving towards knowing and Learning Coding Languages, as it may lead to earning more Income and Its more interesting as We Get to know about it and learning more about it. Learning language is no more difficult in Today's time, We have so many different options available on the Internet by which we can do so, the Popular example of this is Youtube.
What is C Language
C Language was Invented By Dennis Richie In 1972. It is a general purpose coding or programing language which have low access to memory of system. To run a c program it must go through a C compatible Compiler.
C Program:
#include<stdio.h> #include<conio.h> int main(){ printf("Hello World!"); }
What is C++ Language
Now finally we have written code in c language. Now looking forward to 2nd Programing language which is C++. It is a advance version of C which is used to do OOPS Programing or Object oriented programing. It is used to Create high level Programs or Software which was developed by Bjarne Stroustrup in 1979. Lets look forward to create our First programing using C++.C++ Program:
#include<iostream> using namespace std; int main(){ cout<<"Hello World!>>; }; }
What is Python Language
Python Program:
print("Hello World")