+ 1
Whats wrong with this code?
I want to make simple program that adds Integers in C language but this is showing error time limit exceeded https://code.sololearn.com/cOQOd7ku6SxP/?ref=app https://code.sololearn.com/cOQOd7ku6SxP/?ref=app
4 Respuestas
+ 8
conio.h header file has become an obsolete file. Most compilers throw an error if this file is used.
It was mostly used in Turbo C which is pretty old Compiler and cannot compile the newer C++ functionalities
+ 5
You have used getch();
Which is defiened in headerfile conio.h.
Usually i Use those conio.h when working in turboC for console input-output, but in sololearn you dont require that header file.
So better to remove getch();
0
Conio.h is only defined in turbo c ...,