CPP - Funçoes Header
CPP - Funçoes Header
<iostream>
C++ cerr
C++ cin
C++ clog
C++ cout
C++ wcerr
C++ wcin
C++ wclog
C++ wcout
<cmath>
The C++ <cmath> header file declares a set of functions to perform mathematical operations such
as: sqrt() to calculate the square root, log() to find natural logarithm of a number etc.
C++ acos()
C++ acosh()
C++ asin()
C++ asinh()
C++ atan2()
C++ atanh()
C++ cbrt()
C++ ceil()
C++ copysign()
C++ cos()
C++ cosh()
C++ exp()
C++ exp2()
C++ expm1()
C++ fabs()
C++ fdim()
C++ floor()
C++ fma()
C++ fmax()
C++ fmod()
C++ frexp()
C++ hypot()
C++ ilogb()
C++ ldexp()
C++ llrint()
C++ llround()
C++ log()
C++ log10()
C++ log1p()
C++ log2()
C++ logb()
C++ lrint()
C++ lround()
C++ modf()
C++ nan()
C++ nextafter()
C++ nexttoward()
C++ pow()
C++ remainder()
C++ remquo()
C++ rint()
C++ round()
C++ scalbln()
C++ scalbn()
C++ sin()
C++ sinh()
C++ sqrt()
C++ tan()
C++ tanh()
C++ trunc()
<cstring>
work with C style string (null terminated byte strings).
C++ memchr()
C++ memcmp()
C++ memcpy()
C++ memmove()
C++ memset()
C++ strcat()
C++ strchr()
C++ strcmp()
C++ strcoll()
C++ strcpy()
C++ strcspn()
C++ strerror()
C++ strlen()
C++ strncat()
C++ strncmp()
C++ strncpy()
C++ strpbrk()
search characters in one string in another string
C++ strrchr()
C++ strspn()
C++ strstr()
C++ strtok()
C++ strxfrm()
<ctime>
date and time. For example, the time() function is used to get the current time.
C++ asctime()
C++ clock()
C++ ctime()
C++ difftime()
C++ gmtime()
C++ localtime()
C++ mktime()
C++ strftime()
C++ time()