-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,003 changed files
with
17,028 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
test/load_test/0104656be5e1a4be278a901e38c5d45ece559bb12e35d6cb4e335c25f68cbaa7.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/0166153fce29bf16d776937c73dbabdaa912eaf83551156ab2fc330309bc6fe7.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/01965ed9c5026d60c15453d86b604f57b726c5050664b1ed481913e360f1deeb.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/01b0c28db7e1c9e71b2dffa53b2a5ed1b384acf7c94e2d4b376f8f624b364795.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/0225c02ad55dc6eacd19acade1e04f7b53a70b8d3f896619d0340e89f7e35192.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/022d3d0429133671f7aeb54249d2f20f1206e643dac590e8e1a91599c7586564.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/02b3db474b19fce3db55d8fcbb489c71a4c8d53e77025af1ec42e93de42c2dc6.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/02ccb011b8692890961e4ed1fa01d45d151c8912234820d0dec941cbe79d122e.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/02fdb1b013d10004b012f732cb8e2b74b9c51f796cd8ebdc85f85562d83f1d5d.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/03277ac74bc75c36cb351d34b7dace34c5a6e447bdad0109f8425b66da946e6b.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/03476559b1d54fab76f194177ec2f2a467c4e8d41bea7291c640fc0b070184b4.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/038173f5f803af49fe659fb913e54933a7cf08ff2f0698b60231104ef78e7bea.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/0406ee208c359a555bf1a4c27fd32c8d247ceffa8812aa77b67ef797e77e6ed4.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/046339790705e67de8f854d4b634ba40192d3f9a120c632b0ec145f09d3c2945.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/0497ea467e106b59aeb64abe719ce8d7c63915ff6b43bd7eabdfb4d813d74169.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/04c12a1e366f25be6d6d0847ce9916d6a5a5aefc88e54703dd8ba1f0553cd5c5.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/04cb52c0566ed5c280a6886cbdc5a390f0f8f8c1f9abcfa2dc11529b139534d8.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/050c43a2fd1a5e058cfcd4738ee08603e6daf9a6b36dc71d3e66d2cf8327ed16.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/050c6bd26d8351fdd0fd5fe00fc5507c7080de258f10b810063f0393c4dfcae8.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/052f46fcb05d114b22078bc1cc674a59dbe8d0618504f2e8e4b6b5ace72d07d6.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
17 changes: 17 additions & 0 deletions
17
test/load_test/05a084f830dec4e683bd05fd39a421d975a2ed88aa9bdfa7b9b0747de32b0ebd.c
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* Addition program */ | ||
#include <stdio.h> | ||
|
||
main() | ||
{ | ||
int integer1, integer2, | ||
sum; /* declaration before any executable statements*/ | ||
|
||
printf("Enter first integer\n"); /* prompt */ | ||
scanf("%d", &integer1); /* read an integer */ | ||
printf("Enter second integer\n"); /* prompt */ | ||
scanf("%d", &integer2); /* read an integer */ | ||
sum = integer1 + integer2; /* assignment of sum */ | ||
printf("Sum is %d\n", sum); /* print sum */ | ||
|
||
return 0; /* Indicate program ended successfully */ | ||
} |
Oops, something went wrong.