0
Are the codes shown in this app different from that in Turbo C++
2 Réponses
+ 2
C++ is C++, the program you use to edit your code is irrelevant.
Edit: Oh wait, it is actually possible that Turbo C++ is using an older C++ norm like Prbhkr suggests.
+ 1
it will look different
in the header file inclusion
#include<iostream> //without .h extension of header file
using namespace std;
this is because this app is having updated and latest version of c++ 14
while turbo c++ is having still the older version.
Also in turbo c++ you can use void main()
while in this app you must use int main()