Posts by Max Tag • 19 points
6 posts
-
0
votes1
answer135
viewsQ: subtraction of numbers from 32 to 64
I am learning to code in Assembly and I have a problem which is the following: I have a result of a subtraction in number of 32 bits, and it has to return a number of 64 bits. Note: I’m using a…
-
2
votes2
answers3980
viewsQ: "Undefined Reference" error when compiling in C
I have a simple program where when compiling an error Undefined Reference to `increment'| main.c: #include <stdio.h> #include "incrementar.h" int main() { printf("Numero incrementado%d!",…
-
-3
votes1
answer524
viewsQ: Sort String List
Does anyone know how to sort a list (Array List)of Strings containing alphanumeric information of the type: "ABC 12" "A 8"
-
-1
votes1
answer1571
viewsQ: Arraylist of 2 dimensions
I recently started working with ArrayList, but my question is how to create a matrix of ArrayList.
-
-5
votes1
answer358
viewsQ: I can’t find the smallest number
Good afternoon Given a non-negative integer n and n non-negative integers, indicate which of these numbers is the largest and which the smallest. So far I’ve only been able to find the biggest My…
-
-1
votes3
answers451
viewsA: Exchange Postgresql connection for Mysql connection
Do the following: $serverIp = "Localhost"; $UserServer ="Root"; $PasswordServer = "Password do respectivo user"; mysql_connect($serverIp,$UserServer,$PasswordServer); or die(mysql_error); //Este…