CONJG Example
10 CLEAR SCREEN
20 COMPLEX A,B,Y
30 A=CMPLX(2,1)
40 B=CONJG(A) !Returns the conjugate of A.
50 PRINT "a = 2 + i :";A
60 PRINT "b = conjugate of a: ";B
70 END