init commit

This commit is contained in:
2024-03-19 01:05:51 +08:00
commit 199bbf2628
393 changed files with 34883 additions and 0 deletions

14
archive/algorithm/test.c Normal file
View File

@ -0,0 +1,14 @@
#include <stdio.h>
/**
* 调试Makefile
*/
#define MIN(a, b) (a > b ? b : a)
int main()
{
printf("Hello World!\n");
int a = 1, b = 2, c = 3;
int d = (a > b) && (c++);
printf("%d\t%d\n", c, MIN(100, 20));
getchar();
return 0;
}