When compiling a c++ script in VS Code, compiler gives no error, while compiling it with CodeBlocks gives few...
That's the code I'm working on:
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main() {
srand(time(0));
int a = rand() % 6 + 1;
int b = rand() % 6 + 1;
int c = rand() % 6 + 1;
cout << "a: " << a <<" b: " << b <<" c: " << c << endl;
if(a < b && a < c){
cout << a << " is the lower" << endl;
}
else if(b < c){
cout << b << " is the lower" << endl;
}
else{
cout << c << " is the lower" << endl;
}
return 0;
}
When compiling with VS CODE program shows the result without errors.
When I try to run the code with CodeBlocks compiler print the following message:
||=== Build file: "no target" in "no project" (compiler: unknown) ===|
C:****1_2.cpp||In function 'int main()':|
C:****1_2.cpp|15|error: 'nullptr' was not declared in this scope|
C:****1_2.cpp|15|error: 'srand' was not declared in this scope|
C:****1_2.cpp|17|error: 'rand' was not declared in this scope|
||=== Build failed: 3 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
c++ visual-studio-code g++ codeblocks
add a comment |
That's the code I'm working on:
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main() {
srand(time(0));
int a = rand() % 6 + 1;
int b = rand() % 6 + 1;
int c = rand() % 6 + 1;
cout << "a: " << a <<" b: " << b <<" c: " << c << endl;
if(a < b && a < c){
cout << a << " is the lower" << endl;
}
else if(b < c){
cout << b << " is the lower" << endl;
}
else{
cout << c << " is the lower" << endl;
}
return 0;
}
When compiling with VS CODE program shows the result without errors.
When I try to run the code with CodeBlocks compiler print the following message:
||=== Build file: "no target" in "no project" (compiler: unknown) ===|
C:****1_2.cpp||In function 'int main()':|
C:****1_2.cpp|15|error: 'nullptr' was not declared in this scope|
C:****1_2.cpp|15|error: 'srand' was not declared in this scope|
C:****1_2.cpp|17|error: 'rand' was not declared in this scope|
||=== Build failed: 3 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
c++ visual-studio-code g++ codeblocks
2
could be related to the toolchain configuration. Try to create an empty project from SetupWizad of CodeBlocks and see if it works. Than just copy your code in it.
– Blood-HaZaRd
Nov 12 '18 at 14:10
1
"error: 'nullptr' was not declared" sounds like the compiler is not configured to use C++11 (or later).
– Jesper Juhl
Nov 12 '18 at 14:19
C:`
makes me think that you are on Windows and therefore it can be good idea to use a normal Visual Studio instead. It will offer compilation toolchain out of box.
– VTT
Nov 12 '18 at 14:38
I think this is a CodeBlocks issue, you have to select the compiler you want to use for your project. Also, you have to make sure that you have created a c++ project and not c. I haven't used CodeBlocks in ages, hope that helps
– Milos Matovic
Nov 12 '18 at 16:52
add a comment |
That's the code I'm working on:
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main() {
srand(time(0));
int a = rand() % 6 + 1;
int b = rand() % 6 + 1;
int c = rand() % 6 + 1;
cout << "a: " << a <<" b: " << b <<" c: " << c << endl;
if(a < b && a < c){
cout << a << " is the lower" << endl;
}
else if(b < c){
cout << b << " is the lower" << endl;
}
else{
cout << c << " is the lower" << endl;
}
return 0;
}
When compiling with VS CODE program shows the result without errors.
When I try to run the code with CodeBlocks compiler print the following message:
||=== Build file: "no target" in "no project" (compiler: unknown) ===|
C:****1_2.cpp||In function 'int main()':|
C:****1_2.cpp|15|error: 'nullptr' was not declared in this scope|
C:****1_2.cpp|15|error: 'srand' was not declared in this scope|
C:****1_2.cpp|17|error: 'rand' was not declared in this scope|
||=== Build failed: 3 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
c++ visual-studio-code g++ codeblocks
That's the code I'm working on:
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
int main() {
srand(time(0));
int a = rand() % 6 + 1;
int b = rand() % 6 + 1;
int c = rand() % 6 + 1;
cout << "a: " << a <<" b: " << b <<" c: " << c << endl;
if(a < b && a < c){
cout << a << " is the lower" << endl;
}
else if(b < c){
cout << b << " is the lower" << endl;
}
else{
cout << c << " is the lower" << endl;
}
return 0;
}
When compiling with VS CODE program shows the result without errors.
When I try to run the code with CodeBlocks compiler print the following message:
||=== Build file: "no target" in "no project" (compiler: unknown) ===|
C:****1_2.cpp||In function 'int main()':|
C:****1_2.cpp|15|error: 'nullptr' was not declared in this scope|
C:****1_2.cpp|15|error: 'srand' was not declared in this scope|
C:****1_2.cpp|17|error: 'rand' was not declared in this scope|
||=== Build failed: 3 error(s), 0 warning(s) (0 minute(s), 0 second(s)) ===|
c++ visual-studio-code g++ codeblocks
c++ visual-studio-code g++ codeblocks
asked Nov 12 '18 at 14:08
Filippo ScaramuzzaFilippo Scaramuzza
54
54
2
could be related to the toolchain configuration. Try to create an empty project from SetupWizad of CodeBlocks and see if it works. Than just copy your code in it.
– Blood-HaZaRd
Nov 12 '18 at 14:10
1
"error: 'nullptr' was not declared" sounds like the compiler is not configured to use C++11 (or later).
– Jesper Juhl
Nov 12 '18 at 14:19
C:`
makes me think that you are on Windows and therefore it can be good idea to use a normal Visual Studio instead. It will offer compilation toolchain out of box.
– VTT
Nov 12 '18 at 14:38
I think this is a CodeBlocks issue, you have to select the compiler you want to use for your project. Also, you have to make sure that you have created a c++ project and not c. I haven't used CodeBlocks in ages, hope that helps
– Milos Matovic
Nov 12 '18 at 16:52
add a comment |
2
could be related to the toolchain configuration. Try to create an empty project from SetupWizad of CodeBlocks and see if it works. Than just copy your code in it.
– Blood-HaZaRd
Nov 12 '18 at 14:10
1
"error: 'nullptr' was not declared" sounds like the compiler is not configured to use C++11 (or later).
– Jesper Juhl
Nov 12 '18 at 14:19
C:`
makes me think that you are on Windows and therefore it can be good idea to use a normal Visual Studio instead. It will offer compilation toolchain out of box.
– VTT
Nov 12 '18 at 14:38
I think this is a CodeBlocks issue, you have to select the compiler you want to use for your project. Also, you have to make sure that you have created a c++ project and not c. I haven't used CodeBlocks in ages, hope that helps
– Milos Matovic
Nov 12 '18 at 16:52
2
2
could be related to the toolchain configuration. Try to create an empty project from SetupWizad of CodeBlocks and see if it works. Than just copy your code in it.
– Blood-HaZaRd
Nov 12 '18 at 14:10
could be related to the toolchain configuration. Try to create an empty project from SetupWizad of CodeBlocks and see if it works. Than just copy your code in it.
– Blood-HaZaRd
Nov 12 '18 at 14:10
1
1
"error: 'nullptr' was not declared" sounds like the compiler is not configured to use C++11 (or later).
– Jesper Juhl
Nov 12 '18 at 14:19
"error: 'nullptr' was not declared" sounds like the compiler is not configured to use C++11 (or later).
– Jesper Juhl
Nov 12 '18 at 14:19
C:`
makes me think that you are on Windows and therefore it can be good idea to use a normal Visual Studio instead. It will offer compilation toolchain out of box.– VTT
Nov 12 '18 at 14:38
C:`
makes me think that you are on Windows and therefore it can be good idea to use a normal Visual Studio instead. It will offer compilation toolchain out of box.– VTT
Nov 12 '18 at 14:38
I think this is a CodeBlocks issue, you have to select the compiler you want to use for your project. Also, you have to make sure that you have created a c++ project and not c. I haven't used CodeBlocks in ages, hope that helps
– Milos Matovic
Nov 12 '18 at 16:52
I think this is a CodeBlocks issue, you have to select the compiler you want to use for your project. Also, you have to make sure that you have created a c++ project and not c. I haven't used CodeBlocks in ages, hope that helps
– Milos Matovic
Nov 12 '18 at 16:52
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53263876%2fwhen-compiling-a-c-script-in-vs-code-compiler-gives-no-error-while-compiling%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53263876%2fwhen-compiling-a-c-script-in-vs-code-compiler-gives-no-error-while-compiling%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
could be related to the toolchain configuration. Try to create an empty project from SetupWizad of CodeBlocks and see if it works. Than just copy your code in it.
– Blood-HaZaRd
Nov 12 '18 at 14:10
1
"error: 'nullptr' was not declared" sounds like the compiler is not configured to use C++11 (or later).
– Jesper Juhl
Nov 12 '18 at 14:19
C:`
makes me think that you are on Windows and therefore it can be good idea to use a normal Visual Studio instead. It will offer compilation toolchain out of box.– VTT
Nov 12 '18 at 14:38
I think this is a CodeBlocks issue, you have to select the compiler you want to use for your project. Also, you have to make sure that you have created a c++ project and not c. I haven't used CodeBlocks in ages, hope that helps
– Milos Matovic
Nov 12 '18 at 16:52