0
The code wont work
I tried writing the "hello world" code in turbo c++ but it wont run and popped 3-4 errors when all i did was copy it the same way!
8 Respuestas
+ 17
Or... you can trying moving on from Turbo C++ to standard.
In Turbo, "using namespace" is not recognised too. So the "Hello World" code should probably be:
#include <iostream.h>
#include <conio.h>
void main()
{
cout << "Hello World";
getch();
}
Elaborations on Turbo C++ and why we shouldn't continue to use it :
https://www.sololearn.com/Discuss/288609/?ref=app
+ 9
what is your code?
+ 6
well if you are using turbo c++ I assume the errors relate to iosteam
try changing it to iostream.h
or use a newer ide.
+ 5
what is the errors?
0
the normal "hello world" the first one from the module given on this app
0
ill give that a try
0
ohh thanks this will helpp 😋😅
0
acording to my own understanding too i believe may u didnt close the bracket after opening it is more life java but just a little difference try at the end put return 0 to see what it will bring