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
Post a Comment