Skip to content
Open

New #79

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
8 changes: 8 additions & 0 deletions add.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include<stdio.h>

printf("Enter the number of a:");
scanf("%d",&a);
printf("Enter the number of b:");


}
4 changes: 2 additions & 2 deletions add.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
a=8
a1=8
b=4
d=7
c=a+b=d
sum=a1+b=g
print c
8 changes: 8 additions & 0 deletions multi.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include <stdio.h>
int main()
{
int num1, b, sum;

printf("Enter the first number: ");
scanf("%d", &num1);

8 changes: 8 additions & 0 deletions sub.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#include<stdio.h>
void main()
{
int a=3,b=2,c;
c=a-b;
printf("Sub c=");
scanf("%d",&c);
}