In a C program, execution starts at main(). main() generally calls other lower-level functions, which call other lower-level functions, and so on. Some of these functions may be in the standard C library.
Functions like sin(), printf(), malloc(), qsort() etc are part of the standard C library...