-
as seen on ASP Free
- Search for 'ASP Free'
If you read the first part of this two-part series you know that functions and subroutines can help make coding programs with ASP.NET 3.5 simpler in certain ways. In this article you will be presented with a slightly more complex web application that uses functions and subroutines in ASP.NET...…
>>> More
-
as seen on ASP Free
- Search for 'ASP Free'
The most basic of all ASP.NET 3.5 server side scripts that I ve covered using the Visual Basic programming language is not modular in nature. This means that an ASP.NET 3.5 server will interpret the scripts in the Visual Basic file e.g Default.aspx.vb from top to bottom. In most real-world applications…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm going through a Fortran code, and one bit has me a little puzzled.
There is a subroutine, say
SUBROUTINE SSUB(X,...)
REAL*8 X(0:N1,1:N2,0:N3-1),...
...
RETURN
END
Which is called in another subroutine by:
CALL SSUB(W(0,1,0,1),...)
where W is a 'working array'. It appears that a specific…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have got as follows:
use constant ABC => ('one', 'two', 'three');
and I want to pass this constant to variations_with_repetition(\@data, $k) subroutine as @data.
How should I do that?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have got as follows:
use constant ABC => ('one', 'two', 'three');
and I want to pass this constant to variations_with_repetition(\@data, $k) subroutine as @data.
How should I do that?
>>> More