Skip to main content

How to start learning Web-development

what type of IDE we have to use for c/c++ languages

 IDE we have to use for c/c++ languages :-

Every beginner student  was start programming with C/C++ languages and many of student have issues is that which text editor we have to prefer for codding and programming so here i tell you about which code editor you have prefer so here we tell you about many code editor so shall we start in below following are most preferable code editor are 

Most preferable code editor are :-

1.  VS CODE 

    This code editor is mostly used by  programmer in competitive level and also in collages and this is a best programming ide and it is belongs to Microsoft one of the best company which most of the people belive so for starting  you start with vs-code ide and its UI is very simple to understand but at start have to take a tutorial about it in YOUTUBE  so first  start programming with this .

Download link -  https://code.visualstudio.com/



2. sublime text 

This is also most preferable text editor for C/C++ and also used by many programmer in collages and this is free code editor for every person who wants to use it for codding and this is absolutely free for all so any one who wants to code in c / c++  go for this text editor .

Download links -  https://www.sublimetext.com/3

3. Atom IDE 

This is also free ide for every person who want to use it and this ide is belongs to Github which is very renowned brands for every person who known about it .

Download links - https://atom.io/



4. code::blocks 

 
This is IDE is also used in many collages students how prefer it  for use so  beginner level student also use it .

Download links - http://www.codeblocks.org/



You can watch the installation video it on your youtube channel link given below
so thankyou for read our blog and you also read our another blogs 

what type of device you have to choose -

For programming we have to go with our requirement so for that you have to search about it and if you go with gaming PC it was very beneficial for programmer so build up your own gaming pc and you can upgrade it when you want so it is good point of a computer and it never be slow because when we want we can upgrade it according to our choose and our budget so most of the people go with that so don't think go for Gaming PC and given below we give you option for it .


and there is many more pc for programming but if you want in budget and if you adjust with computer then build your own computer pc which is according to and your uses then it comes in budget and in less price you get good product and you also alter or say update its part according to requirement so the pc build is more useful then laptop because in laptop there is a limitation .

Comments

Popular posts from this blog

Class and Object , function overloading Explanation in c++ language

 Classes in C language - It is a user defined data type data type which hold its own data members and member function which can be accessed and user by creating an instance of that class and we say that class is building block that leads to Object Oriented programming  Data member -  It is the data variable of the function  Member function - It are the function use to manipulate these function variable  For Example -  A car is an object the car has attribute such as weight , color and methods such as drive and brake Attribute and method are basically variable and function that belong to class syntax - class   class{        // The class    public :              // Access specifier      int   Num;         // Attribute (int variable)     string word;   // Attribute (string variable) }; Program - // class explaination #include <iostream> using   namespace  std; class   classname {      public:      string   mystring ;      void   printfun ()     {          cout   <<   "Gee

C++ programming tutorial 5

 Call by value or reference - There are two type in function call by value or call by reference in it we pass the value in call by value we pass value and in call by reference we pass the reference of the value . Call by value in C++ Programming language  :- In call by value we pass the variable or say argument and then it used by function which we made so see the code given below  Syntax - #include <iostream > using namespace std; // making function  void fun_name(int a, int b) { ... } int main() { //calling function  fun_name(int n,int n1); return 0; } Code -  // function call by value in C++ programming #include <iostream> using namespace std; // call by value in function declaration void container(int a, int b); int main() {   int x,y;   cout<<"Enter the value of x :"<<endl;   cin>>x;   cout<<"Enter the value of y :"<<endl;   cin>>y;   // here we passing the value as argument   // and also calling the function  

Code of HTML and CSS how we take color , border , etc

  code of HTML and CSS - 1. How we take change color in css (color and border both property) code - <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>color in css</title> <style> .color1{ background-color: green; } .color2{ color: yellow; } .color3{ border: 2px solid red; } </style> </head> <body> <!-- lets take paragarph --> <p class="color1"> In display property if we apply inline-block property on it we can be set their width and height and element was set next to a element in line it not take extra space so in easy word it is work as both block element who's width and height can be changed </p> <p class="color2"> In display property if we apply inline-blo