|
|
| ::Главная страница :: С++/Си :: Статьи :: Справочник |
| cabs, cabsl | Вычисляет абсолютные значения комплексного числа
cabs #include <math.h>
DOS UNIX Win16 double cabs(struct complex z); D
OS/2 Win32
---***---
cabcl #include <math.h>
DOS Win16 long double cabsl(struct _complexl z);
OS/2 Win32
|
| calloc | Выделяет оперативную память
DOS UNIX Win16 #include <stdlib.h>
Win32 ANCI C void *calloc(size_t nitems, size_t size);
ANCI C++ OS/2
|
| ceil, ceill | Округляет значение аргумента в большую сторону
ceil #include <math.h>
double ceil(double x);
DOS UNIX Win16
OS/2 Win32
ANSI C++ ANSI C
---***---
ceill #include <math.h>
long double ceill(long double x);
DOS Win16
Win32 OS/2
|
| _c_exit | Освобождает системные ресурсы (как _exit), но не завершает программу.
DOS Win16
OS/2 Win32 #include <process.h>
void _c_exit(void);
|
| _cexit | Освобождает системные pесуpсы но не завеpшает пpогpамму.
DOS Win16 #include <process.h>
OS/2 Win32 void _cexit(void)
|
| cgets | Считывает строку с консоли
DOS #include <conio.h>
OS/2 Win32 char *cgets(char *str);
|
| _chain_intr | Обеспечивает связь с новым обработчиком прерываний
DOS Win16 #include <dos.h>
void _chain_intr(void(interrupt
far *newhandler)());
|
| chdir | Изменяет текущий каталог
DOS UNIX Win16 #include <dir.h>
OS/2 Win32 int chdir (const char *path);
|
| _chdrive | Устанавливает текущий диск
DOS Win16 #include <direct.h>
OS/2 Win32 int _chdrive(int drive);
|
| _chmod | смотpи _rtl_chmod Изменяет атрибуты файла DOS |
| chmod | Изменяет режим доступа к файлу
DOS UNIX Win16 #include <sys\stat.h>
OS/2 Win32 int chmod(const char *path, int amode);
|
| chsize | Изменяет размер файла
DOS Win16 #include <io.h>
OS/2 Win32 int chsize(int handle, long size);
|
| _clear87 | Очищает слово состояния операций с плавающей точкой
DOS Win16
OS/2 Win32 #include <float.h>
|
| clearerr | Сбрасывает индикацию ошибки
DOS UNIX Win16 #include <stdio.h>
OS/2 Win32 void clearerr(FILE *stream);
ANSI C++ ANSI C
|
| clock | Определяет процессорное время
DOS Win16 #include <time.h>
OS/2 Win32 clock_t clock(void);
ANSI C++ ANSI C
|
| _close | Смотpи _rtl_close Закрывает файл |
| close | Закpывает файл
DOS Win16 UNIX #include <io.h>
OS/2 Win32 int close(int handle);
|
| closedir | Закрывает поток ввода-вывода каталога
DOS UNIX Win16 #include <dirent.h>
OS/2 C++ Win32 void closedir(DIR *dirp);
|
| clreol | Очищает конец строки в текстовом окне
DOS Win16 #include <conio.h>
OS/2 Win32 void clreol(void);
|
| clrscr | Очищает окно в текстовом режиме
DOS Win16 #include <conio.h>
OS/2 Win32 void clrscr(void);
complex conj(complex x);
|
| _control87 | Манипулирует словом управления операций с плавающей точкой
DOS Win16 #include <float.h>
OS/2 Win32 unsigned int _control87(unsigned int newcw,
unsigned int mask);
|
| cos, cosl | Вычисляет косинус
cos Вещественная версия
#include <math.h>
DOS UNIX Win16 double cos(double x);
OS/2 Win32
ANSI C++ ANSI C
---***---
cosl #include <math.h>
long double cosl(long double x);
DOS Win16
OS/2 Win32
|
| cosh, coshl | Вычисляет гиперболический косинус
cosh #include <math.h>
double cosh(double x);
DOS UNIX Win16
OS/2 Win32
ANSI C++ ANSI C
---***---
coshl #include <math.h>
long double coshl(long double x);
DOS Win16
OS/2 Win32
|
| country | Возвращает информацию, зависящую от страны
DOS Win16 #include <dos.h>
OS/2 struct country *country(int xcode, struct
COUNTRY *cp);
|
| cprintf | Осуществляет форматированный вывод на экран
DOS #include <conio.h>
OS/2 Win32 int cprintf(const char *format[,аргумент,...]);
|
| cputs | Выводит строку на экран
DOS #include <conio.h>
OS/2 Win32 int cputs(const char *str);
|
| _creat | Смотpи _rtl_crerat |
| creat | Создает новый файл или перезаписывает существующий
DOS UNIX Win16 #include<io.h>
OS/2 Win32 int creat(const char *path, int amode);
|
| creatnew | Создает новый файл
DOS Win16 #include<is.h>
OS/2 Win32 int creatnew(const char *path, int mode);
|
| creattemp | Создает уникальный файл в каталоге, определенном в маршруте
DOS Win16 #include<io.h>
OS/2 Win32 int creattemp(char *path, int attrib);
|
| _crotl,_crotr | Пеpевоpачивает и изменяет символы в пеpеменных налево или напpаво.
DOS Win16 #include<stdlib.h>
OS/2 Win32 unsigned char _crotl(unsigned char val,
int count)
unsigned char _crotr(unsigned char val,
int count)
|
| cscanf | Просматривает и форматирует ввод с консоли
DOS Win16 #include <conio.h>
OS/2 Win32 int cscanf(char *format[,адрес,...]);
|
| ctime | Преобразует дату и время в строку
DOS UNIX Win16 #include <time.h>
OS/2 Win32 char *ctime(const time_t *time);
ANSI C++ ANSI C
|
| ctrlbrk | Устанавливает программу обработки Ctrl/Break
DOS Win16 #include <dos.h>
Win32 void ctrlbrk(int (*handler)(void));
|
| cwait | Заканчивает пpиостановку подпpогpамм
OS/2 Win32 #include<process.h>
int cwit(int *statloc, int pid, int
action);
|
|
Обмен кнопками, ведение статистики, реклама. |
|||