Posts by Amanda Silva • 89 points
2 posts
-
6
votes1
answer163
viewsQ: What is the "@" inside the Solve function printf for
#include <stdio.h> #include <stdlib.h> void solve(int QTD_DISCOS, int origem, int destino, int temp) { static int rank = 0; if (QTD_DISCOS > 0) { solve(QTD_DISCOS-1, origem, temp,…
casked Amanda Silva 89 -
2
votes2
answers3541
viewsQ: Algorithm to calculate lifetime in days
He wanted to know how many days I have lived between the date I was born to this day, including leap years. This is how I’m doing, but I don’t know how to finish: #include<stdio.h>…