add Chapter06

This commit is contained in:
Amar Mahmutbegovic
2025-05-08 23:01:29 +02:00
parent 7dab196517
commit 0ea2c43f45
8 changed files with 222 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#include <cstdio>
void print(int a) {
printf("Int %d\r\n", a);
}
void print(float a) {
printf("Float %2.f\r\n", a);
}
int main() {
print(2);
print(2.f);
return 0;
}