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

int main()




printf("Enter two integers: ");

scanf("%d %d", &num1, &num2);



// calculate the sum of two numbers

sum = num1 + num2;



// Print the result

printf("%d + %d = %d", num1, num2, sum);
return 0;
}
3 changes: 3 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<P> Hello Pinky</P>
<p> hello</p>