Posts by Cleber • 43 points
5 posts
-
0
votes1
answer43
viewsQ: Printing the records of a file
I am making a program in c, which will read the records of a file and pass the name contained in the records to a double-chained list where they will be sorted alphabetically, and then with the help…
-
0
votes2
answers326
viewsA: Problems with pi approximation algorithm in C
I fixed both R1 and R2 functions and found that the mmc function in this case was useless, the problem was much simpler than I thought. Follow the code in a way that works: #include <stdlib.h>…
-
1
votes2
answers326
viewsQ: Problems with pi approximation algorithm in C
Good evening, I’m having the following problem, I’m developing an algorithm to calculate a pi approximation. #include <stdlib.h> #include <stdio.h> #include <math.h> #include…
-
-1
votes1
answer135
viewsQ: How to write this algorithm in C
The equation A 5+B 5+C 5+D 5+E 5=F 5 such that 0<a<=b<=c<=d<=e<f<=75 has exactly one whole solution. write a program to find it. #include <stdlib.h> #include…
-
1
votes1
answer391
viewsQ: How to use Collapse in bootstrap?
<html lang="pt-br"> <body> <?php include_once 'header.php'; ?> <?php if(!isset($_SESSION["email"]) || !isset($_SESSION["senha"])){ header("Location: logar.php"); exit; }else{ }…