How can we create our own packages in C/C++ | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How can we create our own packages in C/C++

How can we create packages using C C++ for mobile app development

26th Sep 2019, 2:15 PM
hari haran
hari haran - avatar
1 Answer
+ 5
It depends on your development environment. Standalone compiler, you do all the work yourself. IDE, you do a lot less as most is automatic. In simple terms, you create a header to share the interface, a code file to perform the work, and compile the code to create a binary library. This library gets linked into programs that need it.
28th Sep 2019, 11:09 PM
John Wells
John Wells - avatar