Skip to content

Instantly share code, notes, and snippets.

@programmingfaster0226
Created June 18, 2018 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save programmingfaster0226/5eb24d5cabe1994bd34424161248544a to your computer and use it in GitHub Desktop.
Save programmingfaster0226/5eb24d5cabe1994bd34424161248544a to your computer and use it in GitHub Desktop.
programmingfaster.com
#include<stdio.h>
#include<conio.h>
void main()
{
float a,b,sum;
printf("enter values of a and b");
scanf("%f%f",&a,&b);
sum=a+b;
printf("the sum is :%f",sum);
getch();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment