Skip to main content

How to Install C++ Setup

Turbo C++ - Download & Installation

हेलो स्टूडेंट्स आज  मै आपको C++ install कैसे होता है उसके बारे में कुछ बताना चाहता हु तो चलिए मै आपको कुछ पॉइंट्स बताता हु उनको बहुत अच्छे से पढ़ लीजिए और उसी को ही follow करिये | 

There are many compilers available for C++. 

You need to download any one. Here, we are going to use Turbo C++.

 It will work for both C and C++. To install the Turbo C++ software, you need to follow following steps.
  1. Download Turbo C++
  2. Create turboc directory inside c drive and extract the tc3.zip inside c:\turboc
  3. Double click on install.exe file
  4. Click on the tc application file located inside c:\TC\BIN to write the c program


आपको जैसा दिया गया है वैसा ही आप कर सकते है  और अपने सिस्टम पर कोड को एक्सक्यूट करा सकते है | 


1) Download Turbo C++ software

You can download turbo C++ from many sites. download Turbo c++(यहाँ पर क्लिक करे )



2) Create turboc directory in c drive and extract the tc3.zip

Now, you need to create a new directory turboc inside the c: drive. Now extract the tc3.zip file in c:\turboc directory.



3) Double click on the install.exe file and follow steps

Now, click on the install icon located inside the c:\turboc



It will ask you to install c or not, press enter to install.


Cpp Installation 2





Change your drive to c, press c.


Cpp Installation 3






Press enter, it will look inside the c:\turboc directory for the required files.


Cpp Installation 4






Select Start installation by the down arrow key then press enter.




Cpp Installation 5





Now C is installed, press enter to read documentation or close the software.




Cpp Installation 6




4) Click on the tc application located inside c:\TC\BIN



Now double click on the tc icon located in c:\TC\BIN directory to write the c program.





Cpp Installation 7






In windows 7 or window 8, it will show a dialog block to ignore and close the application because full screen mode is not supported. Click on Ignore button.




Now it will showing following console.(ये आपका कंसोल विंडो है )





Cpp Installation 8

Comments

  1. Thanks for the excellent article. this Is Excellent information for the experienced C++ and beginner/business proprietor who may be trying to spare a few bucks and learn some C++ on their own 🙂
    by cognex AWS Training in Chennai

    ReplyDelete

Post a Comment

Popular posts from this blog

Memory Hierarchy

Memory Hierarchy A memory unit is an essential component in any digital computer since it is needed for storing programs and data. Typically, a memory unit can be classified into two categories: The memory unit that establishes direct communication with the CPU is called  Main Memory . The main memory is often referred to as RAM (Random Access Memory). The memory units that provide backup storage are called  Auxiliary Memory . For instance, magnetic disks and magnetic tapes are the most commonly used auxiliary memories. Apart from the basic classifications of a memory unit, the memory hierarchy consists all of the storage devices available in a computer system ranging from the slow but high-capacity auxiliary memory to relatively faster main memory. The following image illustrates the components in a typical memory hierarchy. Auxiliary Memory Auxiliary memory is known as the lowest-cost, highest-capacity and slowest-access storage in a computer system....

CLASS-11 (Python Programming Language)

  Python Programming Language Python is a high-leve l, general-purpose and a very popular programming language. Python programming language (latest Python 3) is being used in web development, Machine Learning applications, along with all cutting edge technology in Software Industry. Python Programming Language is very well suited for Beginners, also for experienced programmers with other programming languages like C++ and Java. Below are some facts about Python Programming Language: Python is currently the most widely used multi-purpose, high-level programming language. Python allows programming in Object-Oriented and Procedural paradigms. Python programs generally are smaller than other programming languages like Java. Programmers have to type relatively less and indentation requirement of the language, makes them readable all the time. Python language is being used by almost all tech-giant companies like – Google, Amazon, Facebook, Instagram, Dropbox, Uber… etc. The biggest stren...

Python For Loop ( Class 11)

  Note:- Read it Carefully: Python Loops The flow of the programs written in any programming language is sequential by default. Sometimes we may need to alter the flow of the program.  The execution of a specific code may need to be repeated several numbers of times. For this purpose, The programming languages provide various types of loops which are capable of repeating some specific code several numbers of times.  Consider the following diagram to understand the working of a loop statement. Why we use loops in python? The looping simplifies the complex problems into the easy ones.  It enables us to alter the flow of the program so that instead of writing the same code again and again, we can repeat the same code for a finite number of times.  For example, if we need to print the first 10 natural numbers then, instead of using the print statement 10 times, we can print inside a loop which runs up to 10 iterations . Advantages of loops There are the following ad...