Questions tagged as 'dev-c++'

0
answers

Use hpp c ++ files

Good, I'm running a project for school, and at one point I realized that I had to split the work into files (because I was getting confused to find the procedures), but I'm not being able to split it, I do not think I'm using it the hpp files we...
asked by 26.04.2018 / 13:34
1
answer

Program with C Recursion

I need to make a program that is a game where the user will input a number and I must determine if it is possible for the user to win the game through a printf saying "Yes" or "No", not it is necessary to show the steps of the program. The game...
asked by 19.11.2017 / 20:43
1
answer

compile dll in c with winsock2.h

I'm using Dev-C ++ and trying to compile a dll, but I always get this error in compiler: Compiling project changes... -------- - Project Filename: E:\blackfish\integration\blackfish\blackfish.dev - Compiler Name: TDM-GCC 4.9.2 32-bit Release...
asked by 20.03.2017 / 01:04
0
answers

Makefile.win error while compiling the project

The file makefile.win gives an error while trying to compile my project. A warning appears asking to reload the file, after pressing YES and trying to compile again it again appears the same warning (an infinite loop); Error line: $(CPP)...
asked by 16.06.2015 / 02:27
0
answers

Error compiling in DEV-C ++ (SDL)

I made the whole procedure to use SDL2, but when I compile the following error occurs: [Error]SDL/SDL.h: No such file or directory This is the content of the line where the error occurs <SDL/SDL.h> What should I do ?? I research...
asked by 15.06.2015 / 23:35
1
answer

Windows and Avast are blocking the compilation of programs in C

Whenever I worked with C language, I used computers from college, so I never had a problem compiling them and running them in the Dev-C ++ IDE. Currently, I installed version 5.11 on my machine, but I just tried to use it today. For testing, I w...
asked by 01.08.2018 / 00:09
1
answer

How to install the freeglut library in dev c ++?

Can anyone help me? How do I install the freeglut library in devc ++? Next semester will have computer graphics in college and I can not install the freeglut library to help me in game development. What I have so far is a folder called freegl...
asked by 24.06.2018 / 20:20
3
answers

Source code does not compile [closed]

#include <iostream> /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int main() { float parede, litros; printf ("Calcular litros de tintas por metros quadrados.\n"); print...
asked by 22.11.2017 / 06:52
1
answer

Program does not execute when filling vector with random numbers not repeated in C

I'm trying to get the random numbers to be generated and fill a vector in a separate function, but the program does not execute and hangs if I put a high, and not as high, number as 50 or 100. Below is my code , if anyone knows what's wrong help...
asked by 28.03.2017 / 12:50
1
answer

I am trying to compare the word deposit with what the user will type, and if it is the same it will make the deposit

#include <stdio.h> #include <stdlib.h> #include <math.h> char nome[45], menu[45]; float saldo, valor; main(){ printf("Digite seu nome \n"); scanf("%s", &nome); printf("Digite o saldo \n"); scanf("%f", &...
asked by 20.04.2018 / 06:18