Created
August 1, 2019 15:08
-
-
Save sachinsaxena25/4580a8e3c2738c34cf6a857c8f21e958 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
int main(void){ | |
float a = 0.0f; | |
float b = 0.0f; | |
float c = 0.0f; | |
printf("please enter the first number:\n"); | |
scanf("%f", &a); | |
printf("please enter the second number:\n"); | |
scanf("%f", &b); | |
c = a + b; | |
printf("sum of numbers:%.2f", c); | |
return 0; | |
} |
Author
sachinsaxena25
commented
Aug 1, 2019
via email
Thank you sir
…On Thu, Aug 1, 2019 at 9:16 PM Divyansh Bhardwaj ***@***.***> wrote:
good job
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<https://gist.github.com/4580a8e3c2738c34cf6a857c8f21e958?email_source=notifications&email_token=AMLNVPGJ3WFSCFCIPCMOD23QCMAOFA5CNFSM4IISBUEKYY3PNVWWK3TUL52HS4DFVNDWS43UINXW23LFNZ2KUY3PNVWWK3TUL5UWJTQAFWKOA#gistcomment-2987232>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AMLNVPDDCALLFZYS52QH353QCMAOFANCNFSM4IISBUEA>
.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment