C
In computing, C is a general-purpose, block structured, procedural, imperative computer programming language developed in 1972 by Dennis Ritchie at the Bell Telephone Laboratories for use with the Unix operating system.
Application
Business
Remove
Platform
Any
License
Any
This one compiles OK. But has a problem when I debbug it (Floating Point Stack Underflow??)& only on some figures like 198.98 it won't print the last digit i.e 1pence to the VDU... I'm stumped!...
1;
: : : if ( x != 0)
: : : Recursiv(x);
: : : return x;
: : : }
: : :
: : : hope this helps a little...
: : :
: :
: : I don't have the docs with me, but doesn't test ax,ax always...
1;
: : if ( x != 0)
: : Recursiv(x);
: : return x;
: : }
: :
: : hope this helps a little...
: :
:
: I don't have the docs with me, but doesn't test ax,ax always result in 0? Maybe...
1;
: if ( x != 0)
: Recursiv(x);
: return x;
: }
:
: hope this helps a little...
:
I don't have the docs with me, but doesn't test ax,ax always result in 0? Maybe it should be (nasm...
: Hello. I'm trying to write a c program that pulls files on the lan that have a create date = system date. If these dates match, I need to copy the files to a new directory. Any suggestions for...
1. Call Recursiv(x-2)
2. Call Recursiv(x-2)
3. Result of STEP #1 MUL Result of STEP #2
4. Call Recursiv(x-1)
5. Result of STEP #3 ADD Result of STEP #4
1;
: if ( x != 0)
: Recursiv(x);
: return x;
: }
:
: hope this helps a little...
:
1;
: if ( x != 0)
: Recursiv(x);
: return x;
: }
:
: hope this helps a little...
:
1;
if ( x != 0)
Recursiv(x);
return x;
}
hope this helps a little...
I'm quite a newbie programmer. Say I have a program like the following:
----------------program starts next line---------------------
#include
int main()
{
int choice;
printf("Try to guess...
: I'd like to know if C++ has a standard function that reads a single character from the keyboard, but does not echo that character nor requires the enter key. I've tried cin.get(); cin.getline();...
Why not use the C function called getch() ?
~Bikram
This message was edited by ccos at 2003-1-13 22:51:39
if i compile the following with flags -ansi -Wall -pedantic,
e.g. anally, i get the compiler warning: initialization in array new
f( int...
Hello all,
I am currently trying to find out how i can get the tick count from the computer. I am using graphics.h to build a dos graphics program. I don't want to use windows.h and time.h...
: Hello,
:
: Sometimes i get confused on when to pass something by value or by reference?
:
: an simple example would be great.
: thanks
:
Hi,
The only time you need to pass of...
: I am certainly not speaking from experience. I know for a fact that there are many many training courses offered all over the world for things like this. There are also online courses. I have...
I am certainly not speaking from experience. I know for a fact that there are many many training courses offered all over the world for things like this. There are also online courses. I have...
I am currently using printf statements to out data, but it just sits at the bottom of the screen. What i am trying to find out is how I can set the output to be displayed at a certain position on...
: You just need more information on how to make things work...
:
Yeah I've only had this book for four days so far, I guess I just need time to go find stuff that may actually be useful to me I...
: You were missing the .h from the header declaration and and if main doesnt need to return a value just use void.
Since you seem to be giving this advice a lot, I thought I might as well set you...