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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started