+ 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
4 ответов
+ 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
+ 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;
}
+ 2
download C4driod, decoder
0
Lord Krishna does conio works only in turbo c++ only ?