Add Two Complex Numbers || Structures || C programming
In this, we are going to see addition of Two Complex Numbers using Structures with help of C Programming Language.

 

#include <stdio.h>
typedef struct complex
{
    float real;
    float imag;
} complex;

complex add(complex n1, complex n2);

int main()
{
    complex n1, n2, result;

    printf("For 1st complex number \n");

    printf("Enter the real and imaginary parts: ");
    scanf("%f %f", &n1.real, &n1.imag);

    printf("\nFor 2nd complex number \n");
    
    printf("Enter the real and imaginary parts: ");
    scanf("%f %f", &n2.real, &n2.imag);

    result = add(n1, n2);

    printf("Sum = %.1f + %.1fi", result.real, result.imag);
    return 0;
}

complex add(complex n1, complex n2)
{
    complex temp;
    temp.real = n1.real + n2.real;
    temp.imag = n1.imag + n2.imag;
    return (temp);
}

//........coded by JAIDEEP JAMBHALE

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post