What programming language versions does Sololearn's compiler support? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

What programming language versions does Sololearn's compiler support?

I would like to know whether SoloLearn's compiler is the latest in the world.

8th Aug 2020, 8:44 AM
Query
Query - avatar
8 Answers
+ 4
Save and share that code in your thread Description for inspection. As I understand it, forward declaration is available even in C, I doubt if forward declaration is C++14 or C++17 feature.
8th Aug 2020, 9:19 AM
Ipang
+ 3
Sololearn's C++ compiler uses GCC 10.1.0 which already supports alot of C++20 features. #include <iostream> template<typename T> void f( T a, T b ) requires std::is_floating_point_v<T> { std::cout << a + b; } int main() { f( 2.3, 2.1 ); } For example works fine.
8th Aug 2020, 9:49 AM
Dennis
Dennis - avatar
+ 3
Ipang I think OP asked for both I just answered OP's question in the title since you already touched the other question.
8th Aug 2020, 10:43 AM
Dennis
Dennis - avatar
+ 2
Dennis Is the OP asking about forward declaration or compiler version? if if it was the latter, then Idk why forward declaration was even brought up here #nevermind
8th Aug 2020, 10:36 AM
Ipang
+ 2
Got it Dennis 👌
8th Aug 2020, 10:47 AM
Ipang
+ 2
Ipang I am asking for SoloLearn's Compiler version as only C++14 or 17 allow forward function declaration, so if I try that in SL's Compiler, and it didn't work, I can deduce that SL's compiler it outdated or my code is wrong.
27th Sep 2020, 2:09 AM
Query
Query - avatar
+ 2
{The Piqued Learner} I would bet on the latter because, as Ipang mentioned, forward function declaration is supported in all versions of C++.
27th Sep 2020, 7:40 AM
Dennis
Dennis - avatar
0
Dennis WAIT WAT?
27th Sep 2020, 9:51 AM
Query
Query - avatar