Most voted "codeblocks" questions
Codeblocks is an integrated multi-platform open source development environment. It is being developed in C++, using wxWidgets. Its architecture is plugin oriented, so that its functionalities are defined by the plugins provided to it. Code::Blocks is intended for development in C/C++ and Fortran. If the question is not about Codeblocks, do not use this tag, even if you are using Codeblocks in your project.
Learn more…54 questions
Sort by count of
-
-2
votes1
answer104
viewsSegmentation fault when returning to main C++
I am getting this error, I know it is an improper memory access error but I can’t find the error! it finishes running the wayValido(...) and when it will return from the main it crashes and gives…
-
-2
votes0
answers11
viewsCold Blocks cannot identify the compiler in the mingw folder
Hello, I did the installation of the hall (codeblocks-20.03mingw-setup.exe Fosshub or Sourceforge.net) windows 7 system 32 bits. I believe the correct version is the one I installed (Code Blocks…
-
-3
votes1
answer55
viewsHelp with C code
In the code below the intention was to create a vector with 10 spaces, then receive 10 values typed by the user, check if the values are equal or less than 0 and assign the value 1 in these cases,…
-
-4
votes1
answer419
viewsVariable declaration problem to compile in Code::Blocks
#include <stdio.h> #include <locale.h> #include <string.h> int main () { setlocale (LC_ALL,"Portuguese"); int num,escolha; char nome[20]; printf ("\nDigite seu nome: "); gets…