Test char to int conversion.
All checks were successful
The build was successful.

This commit is contained in:
2019-04-08 10:32:31 +02:00
parent c2b3cc1a2f
commit b320d35cf7
2 changed files with 2 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ class Program {
private void testNumbers() {
printf("%%b = '%b'\n", $this->n);
printf("%%c = '%c'\n", $this->c);
printf("%%d = '%d'\n", $this->c);
printf("%%d = '%d'\n", $this->n);
printf("%%e = '%e'\n", $this->n);
printf("%%u = '%u'\n", $this->n);