This commit is contained in:
2026-02-09 03:43:16 +01:00
parent 5082f62e59
commit d6eecf0cee
8 changed files with 143 additions and 20 deletions
+9 -1
View File
@@ -3,7 +3,15 @@
int *division(int input, int by)
{
int value = input / by;
//int value = input / by;
if (by != 0){
//int value = input / by;
}
else
return
//int value = 0;
int *ptr = &value;
return ptr;
}