C Library –

C Library – <setjmp.h> ”; Previous Next The setjmp.h header defines the macro setjmp(), one function longjmp(), and one variable type jmp_buf, for bypassing the normal function call and return discipline. Library Variables Following is the variable type defined in the header setjmp.h − Sr.No. Variable & Description 1 jmp_buf This is an array type used for holding information for macro setjmp() and function longjmp(). Library Macros There is only one macro defined in this library − Sr.No. Macro & Description 1 int setjmp(jmp_buf environment) This macro saves the current environment into the variable environment for later use by the function longjmp(). If this macro returns directly from the macro invocation, it returns zero but if it returns from a longjmp() function call, then a non-zero value is returned. Library Functions Following is the only one function defined in the header setjmp.h − Sr.No. Function & Description 1 void longjmp(jmp_buf environment, int value) This function restores the environment saved by the most recent call to setjmp() macro in the same invocation of the program with the corresponding jmp_buf argument. Print Page Previous Next Advertisements ”;

C Library –

C Library – <time.h> ”; Previous Next The time.h header defines four variable types, two macro and various functions for manipulating date and time. Library Variables Following are the variable types defined in the header time.h − Sr.No. Variable & Description 1 size_t This is the unsigned integral type and is the result of the sizeof keyword. 2 clock_t This is a type suitable for storing the processor time. 3 time_t is This is a type suitable for storing the calendar time. 4 struct tm This is a structure used to hold the time and date. C Library Macros Following are the macros defined in the header time.h − Sr.No. Macro & Description 1 NULL This macro is the value of a null pointer constant. 2 CLOCKS_PER_SEC This macro represents the number of processor clocks per second. C Library time.h Functions Following are the functions defined in the header time.h − Sr.No. Function & Description 1 char *asctime(const struct tm *timeptr) Returns a pointer to a string which represents the day and time of the structure timeptr. 2 clock_t clock(void) Returns the processor clock time used since the beginning of an implementation defined era (normally the beginning of the program). 3 char *ctime(const time_t *timer) Returns a string representing the localtime based on the argument timer. 4 double difftime(time_t time1, time_t time2) Returns the difference of seconds between time1 and time2 (time1-time2). 5 struct tm *gmtime(const time_t *timer) The value of timer is broken up into the structure tm and expressed in Coordinated Universal Time (UTC) also known as Greenwich Mean Time (GMT). 6 struct tm *localtime(const time_t *timer) The value of timer is broken up into the structure tm and expressed in the local time zone. 7 time_t mktime(struct tm *timeptr) Converts the structure pointed to by timeptr into a time_t value according to the local time zone. 8 size_t strftime(char *str, size_t maxsize, const char *format, const struct tm *timeptr) Formats the time represented in the structure timeptr according to the formatting rules defined in format and stored into str. 9 time_t time(time_t *timer) Calculates the current calender time and encodes it into time_t format. 10 size_t wcsftime( wchar_t* str, size_t count, const wchar_t* format, const struct tm* time ) Converts a tm object to custom wide string textual representation. Print Page Previous Next Advertisements ”;

C Library –

C Library – <tgmath.h> ”; Previous Next The C library <tgmath.h> contains the headers <math.h> and <complex.h> and defines various types of macros. This function is applicable when real or complex function called on the basis of parameters(types). It allows computer programmer to express the mathematical operation which works with any floating type such as float, long, double and long double. We can use the single function name with regards to type and make the code easier to read. Syntax Following is the syntax of the C library header <tgmath.h> provides various built-in functions− pow(var1, var2) Or, fmod(var1, var2) Or, sin(var1, var2) etc. Parameter The above syntaxes uses various fuction which accepts only two parameters to express the mathematical expression. For example- finding the power of two numbers, getting trigonometric value, etc. The var1 and var2 belongs to same or different data types. Return Type The function returns based on the type of parameters passed to the macros. Ensure that, <tgmath.h> simplify the code maintenance and uses mathematical operation with the help of type-generic macros. Example 1 The C library header <tgmath.h> illustrate the function fmod() which accepts two parameters of different datatypes and calculates the remainders of the division of two numbers. #include <tgmath.h> #include <stdio.h> int main() { float f = 3.0f; double d = 3.0; // result is of type double double result = fmod(f, d); printf(“The result of fmod(%f, %f) = %fn”, f, d, result); return 0; } The above code produces the following result − The result of fmod(3.000000, 3.000000) = 0.000000 Example 2 Following example illustrates the usage of cabs() function that determine the abosolute value of complex number and display the result. #include <tgmath.h> #include <complex.h> #include <stdio.h> int main() { float complex fc = 3.0f + 4.0f * I; double complex dc = 3.0 + 4.0 * I; long double complex ldc = 3.0l + 4.0l * I; // res_fc is of type float float res_fc = cabs(fc); // res_dc is of type double double res_dc = cabs(dc); // res_ldc is of type long double long double res_ldc = cabs(ldc); printf(“cabs(%f + %fi) = %fn”, crealf(fc), cimagf(fc), res_fc); printf(“cabs(%f + %fi) = %fn”, creal(dc), cimag(dc), res_dc); printf(“cabs(%Lf + %Lfi) = %Lfn”, creall(ldc), cimagl(ldc), res_ldc); return 0; } On execution of above code, we get the following result − cabs(3.000000 + 4.000000i) = 5.000000 cabs(3.000000 + 4.000000i) = 5.000000 cabs(3.000000 + 4.000000i) = 5.000000 Example 3 Here, we use the trigonometric function to represent the value of data types − float, double, and long double. #include <tgmath.h> #include <stdio.h> int main() { float f = 3.0f; double d = 3.0; long double ld = 3.0l; // result_f is of type float double result_f = sin(f); // result_d is of type double double result_d = sin(d); // result_ld is of type long double double result_ld = sin(ld); printf(“The value of float [sin(%f)] = %fn”, f, result_f); printf(“The value of double [sin(%f)] = %fn”, d, result_d); printf(“The value of long [double sin(%Lf)] = %fn”, ld, result_ld); return 0; } After executing the above code, we get the following result − The value of float [sin(3.000000)] = 0.141120 The value of double [sin(3.000000)] = 0.141120 The value of long [double sin(3.000000)] = 0.141120 Print Page Previous Next Advertisements ”;

C Library –

C Library – <complex.h> ”; Previous Next The complex.h header file is part of the standard C library, defines various functions and macros for working with complex numbers. The complex number (Z) contains of both a real part and an imaginary part. A complex number represented as x + yi, where x is the real part, y is the imaginary part, and i is the imaginary unit (defined as the square root of -1). C − complex.h Types Following are the types defined in the header complex.h − Sr.No. Types & Description 1 imaginary This is imaginary type macro. 2 complex This is complex type macro. Manipulation Functions Following are the Manipulation functions − Sr.No. Function & Description 1 double complex CMPLX(double real, double imag) This function construct a complex number from real and imaginary part. 2 double creal( double complex z ) This function computes the real part of a complex number. 3 double cimag( double complex z ) This function computes the imaginary part of the complex number. 4 double cabs( double complex z ) This function calculate the magnitude of a complex number. 5 double carg( double complex z ) This function calculate the phase angle of a complex number. 6 double complex conj( double complex z ) This function calculate the complex conjugate. 7 double complex cproj( double complex z ) This function calculates the projection on Riemann sphere. Power Functions Following are the Power functions − Sr.No. Function & Description 1 double complex cpow( double complex x, double complex y ) This function calculates the complex power function. 2 double complex csqrt( double complex z ) This function calculates the complex square root. Exponential Functions Following are the Exponential functions − Sr.No. Function & Description 1 double complex cexp( double complex z ) This function calculates the complex base-e exponential. 2 double complex clog( double complex z ) This function calculates the complex natural logarithm. Trigonometric Functions Following are the Trigonometric functions − Sr.No. Function & Description 1 double complex csin( double complex z ) This function calculates the complex sine. 2 double complex ccos( double complex z ) This function calculates the complex cosine. 3 double complex ctan( double complex z ) This function calculates the complex complex tangent. 4 double complex casin( double complex z ) This function calculates the complex arc sine. 5 double complex cacos( double complex z ) This function calculates the complex arc cosine. 6 double complex catan( double complex z ) This function calculates the complex arc tangent. Hyperbolic Functions Following are the Hyperbolic functions − Sr.No. Function & Description 1 double complex csinh( double complex z ) This function calculates the complex hyperbolic sine. 2 double complex ccosh( double complex z ) This function calculates the complex hyperbolic cosine. 3 double complex ctanh( double complex z ) This function calculates the complex hyperbolic tangent. 4 double complex casinh( double complex z ) This function calculates the complex arc hyperbolic sine. 5 double complex cacosh( double complex z ) This function calculates the complex arc hyperbolic cosine. 6 double complex catanh( double complex z ) This function calculates the complex arc hyperbolic tangent. Print Page Previous Next Advertisements ”;

C Library –

C library – <iso646_h.h> ”; Previous Next The C library header <iso646_h.htm> allows the alternative operators such as and, xor, not, etc which return the specific value. For example, using “and” instead of && in boolean expressions can make the code more readable. There are eleven macros which are derieved from the header iso646.h − Macro Token and && and_eq &= bitand & bitor | compl ˜ not ! not_eq != or || or_eq |= xor ^ xor_eq ^= Example Following is the C library header <iso646_h.htm> to see the demonstration of two number using alternative(”and”) operator. #include <stdio.h> #include <iso646.h> int main() { int a = 5; int b = 3; // Using the alternative ”and” operator int sum = a and b; printf(“Sum of %d and %d = %dn”, a, b, sum); return 0; } Output The above code produces the following result − Sum of 5 and 3 = 1 Example We create a program for swapping two numbers using alternative operators(xor). #include <stdio.h> #include <iso646.h> int main() { int x = 5; int y = 3; // Using the alternative ”xor” operator x = x xor y; y = x xor y; x = x xor y; printf(“After swapping: x = %d, y = %dn”, x, y); return 0; } Output On execution of above code, we get the following result − After swapping: x = 3, y = 5 Example Below the program calculate the logical “and” of two values using alternative operator. #include <stdio.h> #include <iso646.h> int main() { int bool1 = 1; int bool2 = 0; int result = bool1 and bool2; printf(“Logical AND of %d and %d = %dn”, bool1, bool2, result); return 0; } Output After executing the code, we get the following result − Logical AND of 1 and 0 = 0 Print Page Previous Next Advertisements ”;

C Library –

C Library – <float.h> ”; Previous Next The C Library float.h header file contains a set of various platform-dependent constants related to floating point values. These constants are proposed by ANSI C. The float macros allow developers to create more portable programs. Before proceeding with all the constants, it is better to understand the floating-point number which consist following four elements − Sr.No. Component & Component Description 1 S sign ( +/- ) 2 b The base or radix of the exponent representation, 2 for binary, 10 for decimal, 16 for hexadecimal, and so on… 3 e Exponent, an integer between a minimum emin and a maximum emax. 4 p The precision is a number of base-b digits in the significand. Based on the above 4 components, a floating point will have its value as follows − floating-point = ( S ) p x be or floating-point = (+/-) precision x baseexponent Library Macros The following values are implementation-specific and defined with the #define directive, but these values may not be any lower than what is given here. Note that in all instances FLT refers to type float, DBL refers to double, and LDBL refers to long double. Sr.No. Macro & Description 1 FLT_ROUNDS Defines the rounding mode for floating point addition and it can have any of the following values − -1 − indeterminable 0 − towards zero 1 − to nearest 2 − towards positive infinity 3 − towards negative infinity 2 FLT_RADIX 2 This defines the base radix representation of the exponent. A base-2 is binary, base-10 is the normal decimal representation, base-16 is Hex. 3 FLT_MANT_DIG DBL_MANT_DIG LDBL_MANT_DIG These macros define the number of digits in the number (in the FLT_RADIX base). 4 FLT_DIG 6 DBL_DIG 10 LDBL_DIG 10 These macros define the maximum number decimal digits (base-10) that can be represented without change after rounding. 5 FLT_MIN_EXP DBL_MIN_EXP LDBL_MIN_EXP These macros define the minimum negative integer value for an exponent in base FLT_RADIX. 6 FLT_MIN_10_EXP -37 DBL_MIN_10_EXP -37 LDBL_MIN_10_EXP -37 These macros define the minimum negative integer value for an exponent in base 10. 7 FLT_MAX_EXP DBL_MAX_EXP LDBL_MAX_EXP These macros define the maximum integer value for an exponent in base FLT_RADIX. 8 FLT_MAX_10_EXP +37 DBL_MAX_10_EXP +37 LDBL_MAX_10_EXP +37 These macros define the maximum integer value for an exponent in base 10. 9 FLT_MAX 1E+37 DBL_MAX 1E+37 LDBL_MAX 1E+37 These macros define the maximum finite floating-point value. 10 FLT_EPSILON 1E-5 DBL_EPSILON 1E-9 LDBL_EPSILON 1E-9 These macros define the least significant digit representable. 11 FLT_MIN 1E-37 DBL_MIN 1E-37 LDBL_MIN 1E-37 These macros define the minimum floating-point values. Example 1 Following is the C Library header file float.h to define the values of few macros(float) constant. #include <stdio.h> #include <float.h> int main () { printf(“The maximum value of float = %.10en”, FLT_MAX); printf(“The minimum value of float = %.10en”, FLT_MIN); printf(“The number of digits in the number = %.10dn”, FLT_MANT_DIG); } Output After executing the above code, we get the following result − The maximum value of float = 3.4028234664e+38 The minimum value of float = 1.1754943508e-38 The number of digits in the number = 7.2996655210e-312 Example 2 Following is the C Library header file float.h to define the values of few macros(float) constant. #include <stdio.h> #include <float.h> int main () { printf(“The maximum value of float = %.10en”, FLT_MAX); printf(“The minimum value of float = %.10en”, FLT_MIN); printf(“The number of digits in the number = %.10dn”, FLT_MANT_DIG); } Output After executing the above code, we get the following result − The maximum value of float = 3.4028234664e+38 The minimum value of float = 1.1754943508e-38 The number of digits in the number = 1.1754943508e-38 Example 3 Below the program uses the macros(FLT_RADIX) to measure the value of base exponents. #include <stdio.h> #include <float.h> int main() { // Get the value of FLT_RADIX int radix = FLT_RADIX; printf(“The base (radix) of the exponent representation: %dn”, radix); return 0; } Output The above code produces the following output − The base (radix) of the exponent representation: 2 Example 4 Here, we define the three different macros which are FLT_MAX, DBL_MAX, and LDBL_MAX that calculates the number of banayan needed to stack up to Mount Everest’s height using banayan lengths. #include <stdio.h> #include <float.h> int main() { // Heights in inches double heightOfEverestInFeet = 29031.7; double heightOfEverestInInches = heightOfEverestInFeet * 12.0; // Banana length (FLT_MAX, DBL_MAX, and LDBL_MAX are all approximately 1E+37) double banayanLength = 1E+37; // Calculate the number of bananas needed double numBanayan = heightOfEverestInInches / banayanLength; printf(“Height of Mount Everest: %.2lf feetn”, heightOfEverestInFeet); printf(“Length of a magical banayan: %.2lf inchesn”, banayanLength); printf(“Number of bananas needed to reach the summit: %.2e banayann”, numBanayan); return 0; } Output On execution of above code, we get the following output − Height of Mount Everest: 29031.70 feet Length of a magical banayan: 9999999999999999538762658202121142272.00 inches Number of bananas needed to reach the summit: 3.48e-32 banayan Print Page Previous Next Advertisements ”;