This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
programming:c [2021/04/07 02:14] nanodano |
programming:c [2021/04/15 20:23] (current) nanodano |
||
|---|---|---|---|
| Line 26: | Line 26: | ||
| , ldd, strace, static vs dynamic, linking against built libs with header files, assembly built, C++ built, `extern C` | , ldd, strace, static vs dynamic, linking against built libs with header files, assembly built, C++ built, `extern C` | ||
| + | specifying include dirs and library dirs | ||
| ==== debugging ==== | ==== debugging ==== | ||
| Line 82: | Line 83: | ||
| ==== working with time, sleep, dates ==== | ==== working with time, sleep, dates ==== | ||
| + | |||
| + | <code c sleep.c> | ||
| + | #include < | ||
| + | |||
| + | int main(int argc, char **argv) { | ||
| + | sleep(2); | ||
| + | return(0); | ||
| + | } | ||
| + | </ | ||
| ==== malloc and free ==== | ==== malloc and free ==== | ||
| Line 108: | Line 118: | ||
| ==== using SQLite ==== | ==== using SQLite ==== | ||
| + | |||
| + | ==== Get exif info ==== | ||
| + | |||
| + | https:// | ||
| ==== Embedding Python ==== | ==== Embedding Python ==== | ||