Contact Learn C
Copy

Program 364: Add N Complex Numbers using Structures

Program 364: Add N Complex Numbers using Structures
 
#include<stdio.h>
 struct Complex{
  int realPart,imaginaryPart;
 };
main()
{
 int n,i;
 printf("Enter number of Complex number to be added\n");
 scanf("%d",&n);
 Complex c[n],total;
 total.realPart=0;
 total.imaginaryPart=0;
 for(i=0;i<n;i++)
 {
  printf("Enter real part of %d number\n",i+1);
  scanf("%d",&c[i].realPart);
  printf("Enter imaginary part of %d number\n",i+1);
  scanf("%d",&c[i].imaginaryPart);
  total.realPart+=c[i].realPart;
  total.imaginaryPart+=c[i].imaginaryPart;
 }
 
 if(total.imaginaryPart>=0)
     printf("%d+%di\n",total.realPart,total.imaginaryPart);
 else
     printf("%d%di\n",total.realPart,total.imaginaryPart);
 
 
}
Explanation:
 //Coming Soon


Output:



Add N Complex Numbers using Structures
Add N Complex Numbers using Structures

Donate

Download App and Learn when ever you want

Get it on PlayStore
Get it on Amazon App Store
Get it on Aptoide