Debugging
Posted: Thu Feb 05, 2009 11:36 am
Hello,
I was trying the following code to test Codelite.
I tried to set some breakpoints but are ignored when I start the debugger and the program end without breaking.
Only setting the automatic breakpoint at main the program breaks but only on that breakpoint.
Thanks
Paolo
I was trying the following code to test Codelite.
I tried to set some breakpoints but are ignored when I start the debugger and the program end without breaking.
Only setting the automatic breakpoint at main the program breaks but only on that breakpoint.
Code: Select all
#include <stdio.h>
int main(int argc, char **argv)
{
for(int i=0; i<10; i++){
printf("hello world - %d\n",i);
}
return 0;
}
Paolo