5.1.3.載入符號, 檢視堆疊
1.堆疊 (Stack)
2.範例程式碼
#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
void func(int a)
{
printf("func call at %d!!\n", a);
}
int main()
{
int i;
for (i = 0; i<100; i++){ /* break point here */
if (i % 10 == 0)
func(i);
}
return 0;
}3.載入符號
4.切換堆疊
Last updated




