Posts by Israel77 • 55 points
2 posts
-
2
votes1
answer72
viewsQ: Entering an arithmetic expression instead of an integer in C
I’m new in C and I made a very simple program that takes two numbers and prints the sum of them: // Programa que faz uma soma simples #include <stdio.h> // Função principal do programa int…
-
3
votes1
answer138
viewsQ: Problem with the urllib
I am trying to solve the python challege #4 but when I run my possible solution I get an error. My solution is the following: import urllib, re pattern = re.compile("and the next nothing is \d")…