Are the codes shown in this app different from that in Turbo C++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Are the codes shown in this app different from that in Turbo C++

14th Oct 2016, 1:41 PM
Wolf Master
Wolf Master - avatar
2 Answers
+ 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.
14th Oct 2016, 1:49 PM
Zen
Zen - avatar
+ 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()
14th Oct 2016, 3:32 PM
Prabhakar Jha
Prabhakar Jha - avatar