Application
Any
Platform
Any
License
Any
: hi,
:
: i am an intermediate C programmer and want to learn FORTRAN77 or FORTRAN95. I have been unable to locate any simple beginners tutorial on the internet. And am just looking for some...
Am building Plagiarism detector.using C#.NET How can i do this easily with the regular expressions . What algorithm is perfect for this Thanx
Another part of my project is C java Marker , how do i...
: I'm looking to see a simple demonstration of the A Star Algorithm in C#. Can any one direct me to some good information. I did download a project from this site that did the a *, but it was...
hi,
i am an intermediate C programmer and want to learn FORTRAN77 or FORTRAN95. I have been unable to locate any simple beginners tutorial on the internet. And am just looking for some references....
: : I see there is no , well, nothing for fortran here. What is so special about it? I hear there are some fortran lovers still alive, but is it dead?
: :
: Well, it isn't dead, but it's too old...
: Hi,
:
: I would like to pass an integer to a javascript function. How do I do that for the function definition header and the called function?
:
: And, are there functions in jscript which...
Hi,
I would like to pass an integer to a javascript function. How do I do that for the function definition header and the called function?
And, are there functions in jscript which gives mouse...
I really wanted to learn to start programming, but since I didn't want to spend any money I dropped the idea of using Microsoft 's VB languages etc, and I have heard that C++ is not the best language...
Use regular expressions ...
System.Text.RegularExpressions namespace ...
Hi,
Good modifications to the code, but something broke in the process. The code, with your modifications, should read:
mov eax, 1
mov ecx, x
mov ebx, b ; b = base e.g....
: Hi,
:
: Yep, I did mean 4.
:
: Cheers
:
Sorry.
I sometimes mix them up.
I was in a hurry when I wrote that.
:But why would you want 0?
Anything to the power of 0 is equal to 1, just to make it clear.
Hi,
Yep, I did mean 4.
Cheers
: Hi,
:
:
: shr eax,8 ;n=n*16
:
:
: The above is n = n / 16.
:
: Use:
:
:
: shl eax,8 ;n=n*16
:
:
: Cheers
:
2^8 power is equal to 256 not 16. Did you mean 2^4?
= 1 or this will freeze the program while it does 4294967295 loops. But why would you want 0?
mov ebx, 16
mul_loop:
dec ecx
jz end_of_mul_loop
mul ebx
jmp mul_loop...
Hi,
shr eax,8 ;n=n*16
The above is n = n / 16.
Use:
shl eax,8 ;n=n*16
Cheers
: My boss gave me a "simple" project to do. Problem is I don't know ASM. But... is the boss... I have to calculate the following in MASM:
:
: n * 16^x
:
: It has to be in a function which we...
My boss gave me a "simple" project to do. Problem is I don't know ASM. But... is the boss... I have to calculate the following in MASM:
n * 16^x
It has to be in a function which we pass n and x...
This message was edited by Alexandrescu at 2006-2-13 4:56:10
Try some FREE fortran compiler, at:
http://www.thefreecountry.com/compilers/fortran.shtml
I think it's the WATCOM one that might...
exp
: Not enough input arguments.
:
: So pls HELP with the right equations cheers
:
Try:
y=3*exp(-x)
Steph