Hello, here I am,
SVN version issues does not work for me (getting error 
"The topic or board you are looking for appears to be either missing or off limits to you."), so i am posting this issue here:
Test program:
// test.cpp
#include <stdio.h>
#include <windows.h>
int main()
{
    const char* s = GetCommandLine(); // WinAPI function to get RAW command line
    printf( "%s\n", s );
    return 0;
}
Test case 1 - Executed from command line: 
test.exe "hello"Test case 2 - Executed from Code::Blocks with program arguments: 
"hello"Output of test case 1: 
test.exe "hello"Output of test case 2: 
test.exe helloAs you can see, in test case 2 quotes somewhere lost.