Complete the function ConvertToDecadesAnd Years to convert totalYears to decades and years. Return decades and years us the Elapsed Decades Years struct. Ex: 26 years is 2 decades and 6 years. 1 #include 2 3 typedef struct ElapsedDecades Years_struct { 4 int decadesVal; 5 int yearsVal; 63 ElapsedDecadesYears; 7 8 ElapsedDecades Years ConvertToDecadesAndYears (int totalYears) { O FlapsedDecadesYears tempVal:

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 6PE
icon
Related questions
Question
Complete the function ConvertToDecadesAnd Years to convert totalYears to decades and years. Return decades and years using
the ElapsedDecades Years struct. Ex: 26 years is 2 decades and 6 years.
1 #include <stdio.h>
2
3 typedef struct ElapsedDecadesYears_struct {
int decadesVal;`
5
int yearsVal;
6) ElapsedDecadesYears;
7
8 Elapsed Decades Years ConvertToDecadesAndYears(int totalYears) {
ElapsedDecades Years tempVal;
/* Your code goes here */
15 int main(void) {
8722878
25
26 }
ElapsedDecadesYears elapsedYears;
int totalYears;
scanf("%d", &totalYears);
elapsedYears = ConvertToDecadesAndYears (totalYears);
printf("%d decades and %d years\n", elapsedYears.decadesVal, elapsedYears.yearsVal);
return 0;
Transcribed Image Text:Complete the function ConvertToDecadesAnd Years to convert totalYears to decades and years. Return decades and years using the ElapsedDecades Years struct. Ex: 26 years is 2 decades and 6 years. 1 #include <stdio.h> 2 3 typedef struct ElapsedDecadesYears_struct { int decadesVal;` 5 int yearsVal; 6) ElapsedDecadesYears; 7 8 Elapsed Decades Years ConvertToDecadesAndYears(int totalYears) { ElapsedDecades Years tempVal; /* Your code goes here */ 15 int main(void) { 8722878 25 26 } ElapsedDecadesYears elapsedYears; int totalYears; scanf("%d", &totalYears); elapsedYears = ConvertToDecadesAndYears (totalYears); printf("%d decades and %d years\n", elapsedYears.decadesVal, elapsedYears.yearsVal); return 0;
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Declaring and Defining the Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT