Posts by Noronha • 11 points
3 posts
-
0
votes0
answers21
viewsQ: Express error Handler does not work
I have an express server where the index is written as follows: import 'express-async-errors'; import express, { NextFunction, Request, Response } from 'express'; import { CelebrateError,…
-
0
votes1
answer38
viewsQ: Negation selector of . gitignore not working
I have a repository where I put exercises done in C, when compiled, generate an executable without extension (on Linux, on Windows generates a file ".exe"). I just want the files with extension to…
-
0
votes0
answers101
viewsQ: Convert integer to string in C
I have a problem with converting an integer to string in the scope of a function where the conversion return is given as null and I don’t know why. #include <stdio.h> char *getTexto(int num) {…