Need a compiler for mobile | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Need a compiler for mobile

I need to write some c++ programs for my college work. But most of the compiler fails to work with void main. Please sugest a compailer which can run void main, conio etc

11th May 2019, 3:30 PM
Darsan Dev S
Darsan Dev S - avatar
4 Answers
+ 9
Conio? By any chance you aren't speaking about turbo C++? If yes, then good luck! A DOS emulator can run turbo c++ which is what you probably ask. Also, share the code. Perhaps the code itself is incorrect. #Check the below list to see if one works. https://www.sololearn.com/discuss/366870/?ref=app
11th May 2019, 3:38 PM
Lord Krishna
Lord Krishna - avatar
+ 7
Yeah, in modern day c++ you write <iostream> and not conio. No compiler supports it. Except ancient, outdated ones. #Why turbo bad: https://www.sololearn.com/Discuss/288609/ #include <iostream> using namespace std;//for convenience int main(){ cout << 2*3; return 0; }
11th May 2019, 3:48 PM
Lord Krishna
Lord Krishna - avatar
+ 2
download C4driod, decoder
11th May 2019, 3:36 PM
✳AsterisK✳
✳AsterisK✳ - avatar
0
Lord Krishna does conio works only in turbo c++ only ?
11th May 2019, 3:43 PM
Darsan Dev S
Darsan Dev S - avatar