Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <stdio.h>
#include <math.h>
int lg(const int ii)
{
return(log(ii)/log(10));
}
int concatenate(const int a, const int b)
{
return(a * pow(10, (lg(b) + 1)) + b);
}
int main(void)
{
printf("%d\n", concatenate(123, 456));
return(0);
}