Skip to content
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
2 changes: 2 additions & 0 deletions name.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
name = "Your Name"
print("My name is", name)
print("This file is beeing updated by 22BCAE19")
print("OPS practial Drill e19")
4 changes: 2 additions & 2 deletions num.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ int main() {
printf("Enter the second number: ");
scanf("%d", &num2);

sum = num1 + num3;
sum = num1 + num2;

printf("The sum of %d and %d is %d.", num1, num2, sum);
printf("The sub of %d and %d is %d.", num1, num2, sum);

return 0;
}