I am interested in knowing the code when creating a new build system, to compile with Free Pascal using linux, or in simple words how to configure Sublime Text to compile .pas files in linux.
In Pascal the type char are ordered, and I do not know what that order is. For example, if I have the digit 5 and I want to make it take the value of the integer 5 I do ord('5') ? But does it have that value or is it a...
I'm doing a list exercise. The exercise asks me to create a double list of integers. I'm struggling to do it and I think I did it wrong.
I read the integers of a file putting together a common list and then copy the list backwards ...
Let's see...
I am developing a program in Pascal that takes a matrix and assigns to each box the average of the 4 adjacent quasi-squares during n repetitions.
for contador:= 1 to itera do
begin
for i := 0 to width-1 do
begin
for z := 0 t...
I have a menu in a sql server database where the Pid field is the id of the corresponding parent, at this time I will not have no grandchildren in the menu but for a future if I have them, the goal is to show that menu in tree form in a TreeView...
I am compiling a program for class, which has to show from the data that I enter the winning snail.
program Entregable2;
type //Definir tipos de datos
tiempo = record
h : 0..23;
m : 0..59;
end;
partic...