dualwand fertig implementiert

This commit is contained in:
Fourian Sucipto 2025-04-04 11:36:43 +02:00
parent a090a7a2ac
commit c952bb14e0

View File

@ -1,6 +1,6 @@
#include <stdio.h> #include <stdio.h>
void decBinary(int zahl) { void decBinary(unsigned int zahl) {
if(zahl == 0){ if(zahl == 0){
return; return;
} }