Code Snippets C

#include
int main(void)
{
float f;
f = 13 / 3;
printf("%f", f);
return 0;
}