Initial commit: C language learning code

This commit is contained in:
2025-07-20 16:30:56 +08:00
commit 06e24173a6
139 changed files with 9303 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#include <stdio.h>
int main()
{
int a, b, c;
a = b = c = 0;
a++ &&b++ | c++;
printf("%d,%d,%d\n",a,b,c);
return 0;
}