C Programming Reference >> C Basic Tutorials >> C Keywords Home >> _Complexui 30/12/06 - Views - Ratings : 0 of 5 / Votes _Complex is a new data type introduced in C99. This type is used to store real part of complex number and used with _Imaginary to provide support for Numeric Programming. Only float, double and long double type of _Complex forms is defined and this data type find very less uses in C programming. Code -
void function ( void)
{
float_Complex a = 1;
float_Imaginary a = 2;
printf ("Our Imaginary number is %f %f",a,b);
}
|