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>
int main ( void )
{
double d = 214.36;
int i = ((int)d / 10 ) % 10;
printf ( "d = %g, i = %d\n", d, i );
return 0;
}
/* my output
d = 214.36, i = 1
*/