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

Write an ALP to check whether the given 16-bit number stored at 5000H location is palindrome or not. If number is palindrome then store number at 5100H location otherwise store at 5200H location.

Write program to show clock on LCD as follows for Arduino.