In reply to venkata-srikanth:
You would typically use a class or struct to define a data type reprising a complex number
class complex_c;
real Re;
real Im;
endclass
typedef struct {
real Re;
real Im;
} complex_s;
But if you are asking how to represent complex numbers in hardware, that is a much more involved topic since there are only bits in hardware.