Accounts with zero posts and zero activity during the last months will be deleted periodically to fight SPAM!
#include <stdio.h>#include <stdlib.h>int main(){ printf("Break Here!\n"); //Break point on this line printf("Hello world!\n"); return 0;}
Starting debugger: C:\Users\Curtis\mingw64\bin\gdb.exe -nx -fullname -quiet -args "Q:/Learn-C/1 - Hello World/Hello World/bin/Debug/Hello World.exe"doneSetting breakpointsDebugger name and version: GNU gdb (GDB) 11.2Starting the debuggee failed: No executable specified, use `target exec'
Stop using spaces in the path for your project and source files.Edit: The above is only a guess; but, without more info and experience with debug errors; it is all the help I can give.Tim S.
I am new to C and Code::Blocks. I am able to run this Hello World program, but i am unable to use a debugger on it. When I set a break point and try to debug the program, I get the below error message.Code#include <stdio.h>#include <stdlib.h>int main(){ printf("Break Here!\n"); //Break point on this line printf("Hello world!\n"); return 0;}CodeStarting debugger: C:\Users\Curtis\mingw64\bin\gdb.exe -nx -fullname -quiet -args "Q:/Learn-C/1 - Hello World/Hello World/bin/Debug/Hello World.exe"doneSetting breakpointsDebugger name and version: GNU gdb (GDB) 11.2Starting the debuggee failed: No executable specified, use `target exec'What should I do to get the debugger to work?