diff --git a/C/README.md b/C/README.md index 2b9aa9c..8b77e13 100644 --- a/C/README.md +++ b/C/README.md @@ -1,5 +1,16 @@ -# C Language -This folder contains basic algorithms in C language. - -You can contribute by adding any algorithms you think is missing. +#include + +int main() +{ + int a, b, c; + + printf("Enter two numbers to add\n"); + scanf("%d%d", &a, &b); + + c = a + b; + + printf("Sum of the numbers = %d\n", c); + + return 0; +}