開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
Linux
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
請問有什麼軟體可以畫出function flow(名稱我也不太會取,可能是其他種)的?
餵入的資料(Input):
預期的正確結果(Expected Output):
錯誤結果(Wrong Output):
程式碼(Code):(請善用置底文網頁, 記得排版)
int a(){
int x;
x= b();
return x;
}
int b(){
int x;
x= c();
return x;
}
int c(){
int x=10;
return x;
}
int main(){
int x;
x= a();
return 0;
}
補充說明(Supplement):
像是上述程式碼,一層一層呼叫進去再回來
有無軟體可以將這樣的流程(圖)畫出來呢?
或是用其他方式呈現之類的
要google苦無不太知道關鍵字是什麼,找不太到
謝謝 :)