mirror of
https://github.com/nganhkhoa/CTF-All-In-One.git
synced 2025-06-23 11:45:04 +07:00
update memory
This commit is contained in:
11
src/Others/1.5.7_stack.c
Normal file
11
src/Others/1.5.7_stack.c
Normal file
@ -0,0 +1,11 @@
|
||||
#include<stdio.h>
|
||||
int add(int a, int b) {
|
||||
int x = a, y = b;
|
||||
return (x + y);
|
||||
}
|
||||
|
||||
int main() {
|
||||
int a = 1, b = 2;
|
||||
printf("%d\n", add(a, b));
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user