in c++ please Write a program that uses a struct named SongData to store the following information about a song: Title (

Business, Finance, Economics, Accounting, Operations Management, Computer Science, Electrical Engineering, Mechanical Engineering, Civil Engineering, Chemical Engineering, Algebra, Precalculus, Statistics and Probabilty, Advanced Math, Physics, Chemistry, Biology, Nursing, Psychology, Certifications, Tests, Prep, and more.
Post Reply
answerhappygod
Site Admin
Posts: 899603
Joined: Mon Aug 02, 2021 8:13 am

in c++ please Write a program that uses a struct named SongData to store the following information about a song: Title (

Post by answerhappygod »

in c++ please
Write a program that uses a struct named SongData to store the
following information about a song: Title (char array - 25
characters) Artist (char array - 25 characters) Year Released
(integer) You may not use strings! The program should create a
SongData variable, and pass it to a function getSongData() to
prompt the user for each member and store the values in the
members. Then the variable is passed to a function printSongData()
that displays the information about the Song as formatted below.
Ex: If the input is: How Many More Times Led Zeppelin 1969 the
output is: Title: How Many More Times Artist: Led Zeppelin Year:
1969 Ex: If the input is: A Sunday Kind Of Love Etta James 1960 the
output is: Title: A Sunday Kind Of Love Artist: Etta James Year:
1960
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!
Post Reply