@@ -1,3 +1,2 @@ | |||||
patch/ | patch/ | ||||
.vscode/ | .vscode/ | ||||
./JJL.c |
@@ -0,0 +1,28 @@ | |||||
#include "stdio.h" | |||||
int add(int a,int b) | |||||
{ | |||||
return a + b; | |||||
} | |||||
int multiply(int a,int b) | |||||
{ | |||||
return a * b; | |||||
} | |||||
int sub(int a,int b) | |||||
{ | |||||
return a-b; | |||||
} | |||||
void my_printf(int a) | |||||
{ | |||||
printf("\r\n\r\n%d\r\n\r\n",a); | |||||
} | |||||
int main() | |||||
{ | |||||
printf("hello world!"); | |||||
return 0; | |||||
} |