Good News Everybody!
The new search engine is LIVE!
Please report any problems to david (at) midrange.com.
|
Holden Tommy wrote:
Not really the answer but... Why w#ladj = *Zeros - dlsqty * dlstks; Seems you want to make the resulting number a negative? FWIW I would just do this: W#ladj = (dlsqty * dlstks) * -1;
No need to multiply by -1; you just use negation. w#ladj = - (dlsqty * dlstks); The main reason the compiler doesn't like *ZEROS in an expression is because *ZEROS doesn't have a length. The compiler needs to know the lengths of all the operands to figure out the lengths of the intermediate operands.
This mailing list archive is Copyright 1997-2026 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.