English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

2006-10-29 04:57:27 · 5 answers · asked by Anonymous in Computers & Internet Programming & Design

5 answers

Instead of RE-INVENTING the code every time, you can write in the C language to CALL functions and sub programs that perform special functions for you. Countless standard Libraries contain many of the functions that you want and need. But you can develop your own set of libraries for your special needs.

Good luck

2006-10-29 05:00:15 · answer #1 · answered by Anonymous · 1 0

The C standard library is a now-standardised collection of header files and library routines used to implement common operations, such as input/output and string handling, in the C programming language. Unlike other languages such as COBOL, Fortran, and PL/I, C does not include builtin keywords for these tasks, so nearly all C programs rely on the standard library to function.

2006-10-29 12:59:31 · answer #2 · answered by Druid2020 3 · 1 0

A library is a collection of subprograms used to develop software. Libraries are distinguished from executables in that they are not independent programs; rather, they are "helper" code that provides services to some other independent program. Today the vast majority of the code that executes in a typical application is located in the libraries it uses.

In C++, the standard library is STL (Standard Template Library), containing algorithms, containers, iterators, strings and so forth.

2006-10-29 13:06:49 · answer #3 · answered by Josh R 2 · 1 0

It contains a class or a bunch of functions you can utilize in your program. You have to include it in the project.

2006-10-29 13:08:07 · answer #4 · answered by CHEVICK_1776 4 · 0 0

CHAMBER'S

2006-10-30 13:32:00 · answer #5 · answered by pixie007 4 · 0 0

fedest.com, questions and answers