Hi,
When i debug the program using gdb , the gdb is entering the definations of std lib functions (ex: printf, strcpy ect) and other internal functions.
Initially the debuger was working fine, i dont have clue when it got changed.I guess some of the flags of gdb might have changed.
Please let me know how to bring it back to normal state.
Please find the attachment for reference.
below is the code i am using for gdb test.
int main( void )
{
int i;
for (i =0;i<5;i++)
printf("Helloo\n);
return 0;
}