Questions tagged as 'dev-c++'

1
answer

Error "source file not compiled"

I'm using Dev-C ++. I compile and when I go to run the message:    Uncompiled source file What am I doing wrong? #include <stdio.h> main() { float lado, area ; cout<< "digite o lado"; cin>> lado; area=...
asked by 27.09.2015 / 01:16
1
answer

How to walk through a set with inserted data?

I have a program that inserts some integers into a set, and removes when I find an equal, after doing so, I need to bring in the output all integers that are still inside the set, however I am not able to do set and bring the information I want....
asked by 14.10.2018 / 01:16
1
answer

I can not make this program work. Always says numbers are divisible

#include <stdio.h> #include "funcao.h" int main () { int a, b; printf("Escreva os valores de a e b "); scanf("%d", &a); scanf("%d", &b); if (EDivisivel (a,b)) printf("sao divisiveis"); else...
asked by 27.11.2016 / 16:35
1
answer

Folding Machine

I'm studying for a college programming challenge and my teacher gave some programming exercises to train. The bending machine was proposed, but I am not able to develop the input process, in which the person assigns several values for the machin...
asked by 07.05.2017 / 13:51
1
answer

1) Write a function that receives two integers, positive, and determine the product of them, using the following multiplication method [pending]

1) Write a function that receives two integers, positive, and determine the product of them, using the following multiplication method. a. Divide, successively, the first number by 2, until 1 is obtained as a quotient; B. Simultaneously, fold...
asked by 03.04.2017 / 01:55
1
answer

The system is not reading the requested line

I made the code below to read simple date information, but when it reads the day, it oddly asks for two entries, and ends up going one for the variable diatemp and the other for the diatemp > mestemp , without calling printf ("Type the month...
asked by 17.05.2018 / 02:36
1
answer

Code in the c ++ dev of the problem, but in another compiler it works

The code is stopping responding at the last run. #include <stdio.h> #include <stdlib.h> #include <conio.h> #include <string.h> /* run this program using the console pauser or add your own getch, system("pause") or inp...
asked by 30.11.2016 / 16:26
1
answer

Warming - Source file not compiled

asked by 02.09.2016 / 20:10
1
answer

Just-In-Time Debugger - Dev C ++

I create a basic code in Dev C ++ and the moment I try to compile and execute the message below is displayed. Operating system: Windows 8 pro Version C ++ Dev: 4.9.9.2     
asked by 22.03.2015 / 16:55
1
answer

How to use the cURL library for c ++ correctly?

I'm having trouble copying a simple test using the cURL library for C ++ because it always returns this error: C:\Users\Raphael\Desktop\HTTP Request\collect2.exe [Error] ld returned 1 exit status Makefile.win     # Project: SQL Request    ...
asked by 16.09.2014 / 10:00