#include<stdio.h>
int main() {
int a = 2;
int b = 4;
a = xfunc(a, b);
b = yfunc(a, b);
printf("%d, %d", a, b);
return 0;
}
int xfunc(int a, int b) {
return a*b;
}
int yfunc(int a, int b) {
return xfunc(a, b);
}
위와 같이 코드를 작성하여 디버그를 진행해보았습니다.
<참고 단축키>
- Download & Debug -> ctrl + D
- Stop Debugging -> ctrl + shift + D