You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used cl.exe /Zi /Fd "counter.pdb" "counter.cpp"
to build c++ pdb with this codde
// C++ Program to demonstrate
#include <iostream>
using namespace std;
int main_num = 0;
int add(int num) {
main_num += num;
return main_num;
}
int main()
{
int numadder = 1;
while (true) {
printf("%d\r", add(numadder));
}
return 0;
}
The text was updated successfully, but these errors were encountered:
Info:
python code:
I used
cl.exe /Zi /Fd "counter.pdb" "counter.cpp"
to build c++ pdb with this codde
The text was updated successfully, but these errors were encountered: