Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added some operator related programs and updated readme file #169

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"C_Cpp.errorSquiggles": "Disabled"
}
17 changes: 17 additions & 0 deletions CalculatorFunctions/add.c
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
#include<iostream>
using namespace std;

int main(){

int n1,n2;
printf("Enter num1/n");
scanf("%d",n1);
printf("Enter num2/n");
scanf("%d",n2);

printf("The sum is : "n1+n2);

}

return 0;


4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
### C-Guide-for-Beginners
This will be an Open Guide for all beginners in Python ! You can read and learn simple C codes here , and whats more interesting is that you can even Contribute !!!
This will be an Open Guide for all beginners ! You can read and learn simple C codes here , and whats more interesting is that you can even Contribute !!!

#Add whatever sample program you feel like is necessary for a beginner and make sure to add enough comments so that a beginner understands just by reading what each line of the code does !

If you are using any concept directly make sure to explain that using multiline comments.

You can explain any type of algorithm in which you are an exper.