codinasion-archive / codinasion-monorepo

Community Monorepo
https://codinasion.org
MIT License
52 stars 170 forks source link

Convert inches to feet #4263

Closed harshraj8843 closed 1 year ago

harshraj8843 commented 1 year ago

Description

Write a program to convert inches to feet

1 foot = 12 inches

Input  : 60
Output : 5

Tracking Issues

we-kash commented 1 year ago
     #include <stdio.h>
     int main()
     {
           long double inches,feet;//to store fractional part
           printf("Enter inches: ");
           scanf("%Lf",&inches);//To take take the input from the user
           feet=inches/12;
           printf("%Lf ",feet);
           return 0;
    }
harisdev-netizen commented 1 year ago

Can you assign me this issue?

harshraj8843 commented 1 year ago

Hey @harisdev-netizen

You can comment !assign on any good first issue you want to contribute to, to be auto-assigned

!assign
harisdev-netizen commented 1 year ago

!assign

harshraj8843 commented 1 year ago

Hey @harisdev-netizen, !assign command is only for good first issue !!!

Please choose another issue.

Thanks for your interest in contributing to this project.

harisdev-netizen commented 1 year ago

I mean I want to work on this issue.