Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

P99 and C99 vs C11

Tags:

c

c99

p99

c11

Maybe I am misunderstanding the use of the P99 library but what advantages does it provide over C11 (mainly concerned about multithreading) if anything more than being an emulator.

Speed? Efficiency?

Or just backwards compat?

like image 436
BAR Avatar asked Jul 07 '12 23:07

BAR


1 Answers

The main advantage it provides over C11 is that it works with C99 compilers. C11 support doesn't really exist yet. It also provides many features that aren't in C11.

like image 143
Jason Avatar answered Nov 19 '22 12:11

Jason