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

Input Devices

Input Devices(इनपुट डिवाइस ) Input device enables the user to send data, information or control signals to computer. Central processing unit of computer receives the input and processes it to produce output. Some of the popular input devices are: Keyboard Mouse Scanner Joystick Light Pen Track ball Digitizer Microphone Magnetic Ink Character Recognition (MICR) Optical Character Reader (OCR) Keyboard (कीबोर्ड ) It is a basic input device that is used to enter data by pressing keys. It has different sets of keys for letters, numbers, characters and functions. QWERTY keyboard is the commonly used keyboard to enter data. Mouse (माउस) It is a hand held input device. It is used to move cursor or pointer across the screen. It generally has left and right button and a scroll wheel between them. Laptop computers come with a touch pad that works as a mouse. It lets you control the movement of cursor or pointer by moving your finger over the touchpad. Scanner (...

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....

MAIN MEMORY

Main Memory The main memory acts as the central storage unit in a computer system. It is a relatively large and fast memory which is used to store programs and data during the run time operations. The primary technology used for the main memory is based on semiconductor integrated circuits. The integrated circuits for the main memory are classified into two major units. RAM (Random Access Memory) integrated circuit chips ROM (Read Only Memory) integrated circuit chips RAM integrated circuit chips The RAM integrated circuit chips are further classified into two possible operating modes,  static  and  dynamic . The primary compositions of a static RAM are flip-flops that store the binary information. The nature of the stored information is volatile, i.e. it remains valid as long as power is applied to the system. The static RAM is easy to use and takes less time performing read and write operations as compared to dynamic RAM. The dynamic RAM exhibits...