blog/archive/other/test.c
2024-03-19 02:45:09 +08:00

10 lines
140 B
C

int main()
{
int a = 0;
for (int i = 0; i < 3; i++)
{
a += i;
}
}
//gcc -g -c test.c
//objdump -d -M intel -S test.o