示例#1
0
文件: thejas.c 项目: thejasam/pcd2017
int main(void)
{
struct complex a;
struct complex b;
a=getcomplex();
b=getcomplex();
struct complex c=add(a,b);
showcomplex(c);
return 0;
}
示例#2
0
文件: main.c 项目: snehilarya/pcd2017
int main()
{
struct complex a,b,c;
printf ("enter the two complex no to be added");
a=getcomplex();
b=getcomplex();
c=add(a,b);
showcomplex(c);

return 0;
}