P99 and C99 vs C11

Perhaps I do not understand the use of the P99 library , but what advantages does it give with respect to C11 (mainly regarding multithreading), if anything more than an emulator.

Speed? Efficiency?

Or just backward compatibility?

+5
source share
1 answer

The main advantage that it provides for C11 is that it works with C99 compilers. Support for C11 does not yet exist. It also provides many features that are not found on C11.

+3
source

All Articles