Posts by Pedro Augusto Null • 74 points
5 posts
-
1
votes1
answer35
viewsA: Factorial calculation without finishing the program
You just needed to give a space on "%c" of scanf("%c", &resp); leaving this way: scanf(" %c", &resp);, with the do while, the function was thus: #include <stdlib.h> #include…
-
0
votes1
answer76
viewsQ: Pass received server data to Client Javascript
Suppose I have the following page made in HTML that shows the name {{name}} and data {{ date}} both information came from the server: <h1>Seu nome é {{name}} </h1> <h1> A data de…
-
2
votes2
answers75
viewsQ: With calling a file in Clojure?
Hello, I have already searched in several places, but I did not find the answer I wanted. I have the following function in the archive home.clj (defn hello [request] (let [name (get-in request…
-
1
votes1
answer112
viewsQ: Best Backend Platform for Microservices
I have to develop a server with microservices with some functional programming language, initially I thought of Haskell and Clojure (languages with whom I most identify), I need a language with fast…
-
0
votes1
answer123
viewsQ: Infinite Loop in Exception Handling
I’m trying to make a try to ask for the option number for the user, but I want to do this until he type an integer number, I did a Try/catch, but when I run it and digit a string it keeps sending an…