Hello guys!
I'm having a problem with start of a simple C program (just printf) with CodeBlocks. The error message is "'Permission denied". What should i do?
Thanks in advance :)
I have a set of C++ projects in Code::Blocks and a script that builds all of them.
I'm having a hard time getting CodeBlocks to link SDL and it's libraries. There is no error in the code as I've compiled it on Windows but I can't seem to get the compile and links to work on Ubuntu.
Hello!
I just got my Ubuntu 12.04 up and running for the first time!
I've been using CodeBlocks when running Windows 7.
I am just curious for any input into how fellow C++ coders are doing on Linux?
Favourite IDE's? Is CodeBlocks good on Linux? Any general C++ related linux tips are very much welcomed!
Thanks!
Hi
I'm developing a project in c++ using the CodeBlocks 8.04 IDE.
All the text in the log, such as Build Messages and Build log have been enlarged and I
cant find a way to make it smaller, its extremely annoying since I cant see the full
build messages errors etc.
Also I'm on a laptop, so no numpad commands works.
i've tried in the editor settings but I cant find anything
Thanks
Under Ubuntu 11.10 and repository Codeblocks, I cannot set program command line arguments in Project - Set Programs Arguments
If you look carefully at the line beneath Program arguments: I can see what looks like a one pixel high text entry box
I can work round by hacking the project.cbp file and adding a line
<Option parameters="-t nt5002" /> but this is messy.
I want to make the programs compiled by Codeblocks, run the shell program 'Terminator'.
So I went into Environment Settings > Terminal to launch console programs, the default value is xterm -T $TITLE -e so I replaced it with /usr/bin/terminator -T $TITLE -e but when I compile the program doesn't run...
How can I do it?
Hi,
I've created a small C++ application using Code::Blocks. I've run the program from codeblocks and I've run it using the terminal, and it works fine. But when I click on the executable (that is automatically created by codeblocks in the specified folder), nothing happens. Also, I've copied all the required files to the location where the executable is present.
I'm using codeblocks to learn C programming.
When I use /* */ the program works, but when I use // the program returns this error.
expected identifier or ‘(’ before ‘/’ token|
here's the main.c
#include <stdio.h>
#include <stdlib.h>
//Ex1
int i;
float p;
char *n;
int main(void)
{
i = 22;
p = 70.0;
n = "Samuel";
printf("%s %d %.2f", n, i, p);
return 0;
}