Program to add two complex numbers in C
#include <stdio.h> struct complex { int real, img; }; int main() { struct complex a, b, c; printf(“Enter a and b where a + ib is the first complex number.n”); … Read More
#include <stdio.h> struct complex { int real, img; }; int main() { struct complex a, b, c; printf(“Enter a and b where a + ib is the first complex number.n”); … Read More