@@ -0,0 +1,12 @@
#include <stdio.h>
#include "IdanLib.c"
void main(void)
{
float num, base;
printf("Enter number and base: ");
scanf("%f%f", &num, &base);
num = ConvertBaseToDeciaml(num, base, 6);
printf("%f\n", num);
}
The note is not visible to the blocked user.