Code Snippets C

#include
int main(void)
{
printf("Number of seconds in a year: ");
printf("%f", 60.0 * 60.0 * 24.0 * 365.0);
return 0;
}