Advertisements
Advertisements
प्रश्न
Write a C++ program to add two distances using the following structure definition.
struct Distance{
int feet;
float inch;
}d1, d2, sum;
उत्तर
int main()
{
cout << “Enter 1st distance:” << end1;
cout << “Enter feet:”; cin >> d1.feet;
cout << “Enter inch:”; cin >> d1.inch;
cout << “\n information for 2nd distance:” << end1;
cout << “Enter feet:”; cin >> d2.feet;
cout << “Enter inch:”; cin >> d2.inch;
sum.feet = d1 . feet + d2.feet;
sum.inch = d1.inch + d2.inch;
if (sum.inch > 12)
{
++ sum.feet;
sum.inch = 12;
}
cout << end1; “Sum of distance =” << sum.feet << “feet” << sum.inch << “inches”;
return 0;
}
Output:
Enter 1 st distance
Enter feet: 6
Enter inch: 3.4
Enter 2nd distance
Enter feet: 5
Enter inch: 10.2
Sum of distances = 12 feet 1.6 inches
APPEARS IN
संबंधित प्रश्न
Structure definition is terminated by ______
What will happen when the structure is declared?
A structure declaration is given below.
struct Time
{
int hours;
int minutes;
int seconds;
}t;
Using the above declaration which of the following refers to seconds.
Which of the following is a properly defined structure?
A structure declaration is given below.
struct employee
{
int empno;
char ename[10];
}e[5];
Using the above declaration which of the following statement is correct.
When accessing a structure member, the identifier to the left of the dot operator is the name of ______.
Define structure. What is its use?
What is the error in the following structure definition.
struct employee{ inteno;charename[20];char dept;} Employee e1,e2;
How to access members of a structure? Give example.
What is called anonymous structure? Give an example?