Click here to Skip to main content
15,891,895 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have few queries to ask here they are in order :
1) who owns c++ language ?
2) how does my program know of various api used by it?are they inside the compiler ?
4)What is source compatibility and binary compatibility?

Thanks

What I have tried:

Did not find the proper answer ?
Posted
Updated 15-Feb-20 23:51pm

1 solution

1) Nobody. It's standardized by the International Organization for Standardization (ISO)[^] but it's not an "owned thing".

2) They are picked up from library files which are either added to your app binary file by the Linker stage (which happens after the compiler) or are accessed from their own library files (often with a .DLL extension) while your code is running.

3) Not a question.

4) Source compatibility: Source-code compatibility - Wikipedia[^]
Binary compatibility: Binary-code compatibility - Wikipedia[^]
 
Share this answer
 
v2
Comments
CPallini 16-Feb-20 15:30pm    
5.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900