Questions tagged [geany]

Geany is a lightweight and fast IDE. It is using the GTK [2|3] toolkit while trying to keep only a low number of further dependencies from other packages.

Geany is a lightweight and fast IDE (integrated development environment). It was designed to have very few dependencies, and requires only the GTK 2 libraries to run.

It's based on Scintilla and is mostly written in C and C++.

428 questions
-3
votes
1 answer

"./main: not found" (C++, RP 3/B, Geany IDE)

I'm attempting to write a simple program that calls a function written in a pair of Header and CPP files. I'm doing this on a Raspberry Pi 3 Model B, and the Geany IDE v1.37.1. Compile Command: g++ -Wall -c "%f" -c test.cpp Build Command: g++ -Wall…
Runsva
  • 365
  • 1
  • 7
-3
votes
1 answer

Path error in a header inclusion with Geany (C++)

I found many articles about the what I am about to ask but no precise answer. I wanted to compile a main file from a RSA library. However, this error appears and I don't know how to fix it:
-3
votes
1 answer

Division by zero in geany

I am trying to run the sub routine in geany, bur it keeps me giving the following warning NPJ(I,J) = DBLE(((2)/((X(I+1))-(X(I-1))))*DBLE(-((1)/(X(I+1)-X(I)))-((1)/(X(I)- X(I-1)))))+ & 1 Warning: Possible change of value in…
Leonardo Guerreiro
  • 901
  • 1
  • 9
  • 18
-3
votes
2 answers

Kolmogrov smirinov test

Here is my. I think my code is correct but it gets stuck after i give input. But if i remove other code except sorting and printing it in ascending order it works. But if not it doesn't work. It stuck here #include #include…
SahSantoshh
  • 73
  • 2
  • 12
-3
votes
1 answer

How to counter "programming language amnesia" when writing code in Python?

What tools are available to help counter poor memory of programming language rules and syntax, particularly in relation to Python? I use Geany on Linux, and find that word completion and snippets help, but they are not nearly enough. Having Python…
X-Mann
  • 327
  • 2
  • 5
  • 15
-3
votes
4 answers

The value oF P is unexpected

please, How do you explain technically why P =2 and not P=3. (I tried it on Geany and it have the value 2). int main() { int N = 10, P = 5, Q = 10; N = 5; P = 2; Q = ++N == 3 && P++ != 3; printf ("N=%d P=%d Q=%d\n", N, P, Q); …
OntoBLW
  • 215
  • 1
  • 2
  • 6
-4
votes
1 answer

Python prgram won't buil d after renaming it

I've setup Geany a long time ago to compile my Python program on my Windows machine which it then sends to my Pi via scp. It still works fine - but if I take the same file and rename it, it refuses to do it. I get "scp: /home/pi/scripts/APC2.py:…
Adjvan
  • 1
  • 1
-6
votes
1 answer

Getting error in the c Program regarding expected ; before token

error: expected expression before ';' token graph[ ptr->count ].count- ; ^ I am getting the error shown when I compile my code in Geany. Can anyone please help what to do?
Tina
  • 1
  • 1
1 2 3
28
29