All need is the function you can write down here in word doc
1. Write a function called set_smartphone(), which accepts, a string, a character, an integer, and a pointer to a Smartphone. The function indirectly sets (via the pointer to the Smartphone) each component in the struct to the values passed into the function. The function does not return a value. IN c please not c++
2. Define a struct type that represents a smartphone. The struct should store the following data: model (a character array of size 30), color (a character), and storage space (an integer). The type should be renamed from struct smartphone to Smartphone. In C as well not c ++