Most voted "dev-c++" questions
Dev-C++ is a free integrated development environment that uses the compilers of the GNU project to support C and C programming languages++
Learn more…55 questions
Sort by count of
-
-2
votes0
answers12
viewsCryptography in C language
I need to make a pseudo-code to then pass in C-language from a Hill cipher encryption. The phrase to be encrypted will be inserted by the user and the key matrix as well. I cannot use character…
-
-2
votes1
answer185
viewsProblems with Two-Dimensional String Matrix
My objective in this exercise is that in each loop to make a new snack order, the informed data be added in the final table (matrix[i][j]). In the second "for" is where I try to assign the variables…
-
-2
votes1
answer28
viewsMatrix, Float, matrix position
Could someone show my error? I had to leave a 3x3 matrix, I just need the output to be like this: 0 0 0 0 0 0 0 0 0 #include <stdio.h> #include <stdlib.h> #include <conio.h>…
-
-2
votes0
answers16
viewsAccurate puts counter when reaching determined how much vote issue result and adc function that closes program
#include<stdio.h> #include<stdlib.h> #include<string.h> main(){ int n, b, p1, p2, p3, t, opc, c1, c2, c3; printf(" Digite 1 para votar no candidato 1! Digite 2 para votar no…
-
-3
votes1
answer71
viewsHow to insert data into the C++ string using the Geany IDE?
I’m studying String types in C. The most common was gets() however it was discontinued because of "buffer overflow". I would like to know what the equivalent function in IDE Geany to gets(). I’ve…