+ 1
Which c comiler version is used at sololearn
C
2 Answers
+ 7
gcc version: 9.2.0
You can check it by going to the Playground and running this code:
#include <stdio.h>
int main() {
printf("gcc version: %d.%d.%d\n",__GNUC__,__GNUC_MINOR__,__GNUC_PATCHLEVEL__);
return 0;
}
+ 1
Thanks bro