You haven't even made an attempt to code either function, or you haven't posted code. I'm not going to right it for you, but, I'll give you an overview of what the functions should do:
1 2 3 4 5 6 7 8 9 10 11 12 13
// Parameters: x - a float
// Return value: int
// What: Returns the rounded value of x
// How: Possibly using the floor/ceil functions in cmath
// Could also use some math skills and type cast the returned value
int round(float x);
// Parameters: a - array of floats, size - size of the array - a
// Return value: None
// What: Displays integer values of each float in a
// How: Loops a variable from zero to size - 1, calls round on that float
// and displays the returned value
void print_integers(float a [ ], int size);
No, I haven't come up with a good commenting scheme yet. I've seen a lot that I liked, and they're all based around the same concept, what, how, returns and parameters. Some have a few extra fields naming the creator of the function, date/time, etc. It's hard to find something that's professional looking without overdoing it, yet those comments take up more lines than my actual code would.