Posts by Dennis Paiva • 43 points
3 posts
-
1
votes1
answer50
viewsQ: How do I put a class to work in front of a condition using ngclass
I’m writing an angular code and I’m trying to make a situation where, by choosing the name of a city, depending on its size, the size of the space that bears the name increases depending on the name…
-
0
votes2
answers69
viewsQ: Error when user provides file name
#include <stdio.h> int main(void) { char ch; int caracteres = 0; int linhas = 0; int imprimiveis = 0; FILE *arquivo; char nome[50]; printf("Escreva o nome do arquivo: "); fgets(nome, 50,…
casked Dennis Paiva 43 -
2
votes1
answer61
viewsQ: Recursion problem, C language
I have a problem, in a code I found where it receives a string from the user and returns it reversed, doing this recursively. However, I do not understand why the function made can actually do this.…