Question: Question 1 : Distinguish between Structure and Union in C language using an example pseudo code. Answer: Question 2 : Write a program to accept
Question 1: Distinguish between Structure and Union in C language using an example pseudo code.
Answer:
Question 2: Write a program to accept (scanf) and display information of two students using the following structure. Give the output.
struct student
{
int id;
char name[30];
float GPA;
};
Answer:
Question 3: Write a program to accept (scanf) information of two complex numbers using the following structure. Your program should compute and display the sum and product of the two complex numbers on the screen.
struct complex
{
double real;
double imaginary;
};
Answer:
-----------------------------------------------------------------------------------------------------------------
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
