When the program built with C::B doesn't work

0

I made a small c++ project and it was fully compiled and built it.

#include <iostream>

using namespace std;

int main()
{
    cout << "Hello world!" << endl;
    return 0;
}

When I run through c::b it was okay

Hello world!

However, it says next warnings when I run program outside of the c::b. "programdir/bin/Debug/program.exe"

When I run program outside c::b

So I got "libgcc_s_dw2-1.dll" from sourceforge, pasted it next to my .exe file, and I got 0xc000007b error with the error "cannot start the program"

What should I do in this case of problem?

c++
gcc
codeblocks
asked on Stack Overflow Jun 16, 2020 by 영우유 • edited Jun 16, 2020 by nvoigt

0 Answers

Nobody has answered this question yet.


User contributions licensed under CC BY-SA 3.0