Please enable JavaScript.
Coggle requires JavaScript to display documents.
C language (Exponential functions (Function Log calculates the natural…
C language
Exponential functions
-
-
Function expm1: Calculate e raised to the given power, minus one (c++11 feature)
-
-
-
-
-
Trigonometric functions
-
-
-
-
-
-
Function atan2 : arcotangente of two arguments, using the sign to determine the quadrant
Functions Power
-
Hypot function: Calculate the square root of the sum of the squares (hypotenuse of the two legs), (C++ feature)
-
-
A C/C++ Statements controls the flow of the execution of a program. It consist of key- words, expressions, and other statements.
These are two types of statements: these are single statements is delimitedand compound statements is delimited by ends with a semicolon (;)
The Printf ()function
Is used to write information to standard output . The structure of this function is : Printf(character strings with format specifiers, variables or values)
The printf () function allows you to format your output. when you print the output of a type float. The printf () function provides field width specifiers so that you can control how printed values will appear on the disply
More than one specifier : You can use more that one format specifier in a printf () function. You must have at list as many arguments as format specifiers . You can have more arguments than format specifiers but the extra arguments will just be ignored