You format the string output the time you want


| 150 | 5. |
|
|
|---|---|---|---|
In lines 22 and 23, you format the string to output the time as you want, using strftime.
Summary
Questions and Answers
Q: Why use arrays to store multiple elements if you can simply use a number after the variable name to store indexes?
A: Most advanced programming techniques are almost impossible to accomplish without pointers. When I talk about advanced data structures later, you’ll see how pointers make things easier.
Q: What is ASCII?
1. What is an array?
2. What is wrong with the following code:
Test [i] = rand () % 100;
}


