How do I take inputs in Sublime Text for C++?

How to take input in sublime text editor for cpp ? 

Go to TOOLS > BUILD SYSTEM > NEW BULD SYSTEM .



Now delete that code and copy this code and paste.

Code :-


{

    "cmd": ["g++.exe", "-std=c++14", "-o", "$file_base_name", "$file", "&&", "start", "cmd", "/c", "$file_base_name & echo. & echo. & pause"],

    "shell": true,

    "selector": "source.c++"

}

[Code source :- https://gist.github.com/nktstudios/fd1865492dd3ed97ff3bc4863cc6ecb3 ]


Now go to FILE > SAVE AS and save file as "cpp.sublime-build" .

Now take note here you can use any name for your flie but save file as "YOUR_NAME.sublime-build".



After this close your sublime editor and open again.

Open your cpp code and press ctrl + shift + b and select cpp (in your case it will show whatever name you given) and that will open direct command prompt (cmd) .





Comments

Popular Posts

Identify bugs and resolve it to fulfill following objective. Interface 3 LEDs and 4 SWICHES with Arduino. Develop a program that by pressing 1st switch it will ON LED1, by pressing 2nd switch it ON LED2 and same for 3rd switch and LED3. By pressing 4th switch it will reset (OFF) all LEDs.

Receive the data between 0 to 9 serially using arduino.