Printf()
From ElectronicWar
| Function information for printf() | |
| Function | printf() |
| Parameters | (string, args...) |
| API | All |
| Cost | $0 |
| Level | N/A |
| CPU Usage | 0 |
| Description | Returns the string f with the values of the variables provided in args appended onto it. |
[edit] Example
printf("%s World, %s Wars %s.", "Hello", "Hack", "rocks");
Output: "Hello World, Hack Wars rocks."

