Summary: True enough, SN, though I have been holding back! =) In answer to your questions, Jack: I refered to Grady Booch in an attempt at humour; he is a maj...
Summary: I believe there is a sort routine (ie. qsort) exists in C library. If you sort the user input array, and the random generator array in ascending order...
Summary: Is the solution 96421 * 8753 = 843973013? I think it is, although I didn't write code to test each combination. Yes, you could do this in 30 lines in...
Summary: Hi. Some of you may remember my question about OOP design. This question has something to do with that, except, OOP isn't necessarily required for wha...
Summary: hello, sorry that i didn't reply to answers of my previous questions on "random number with probability", since i have finished the coding 2 days aft...
Summary: I have to design, implement, and test a complex number class that represents the real and imaginary parts as double-precision values(data type double)...
Summary: Hi programmers, I am writing this because I am trying to solve a simple linear system Ax = b (solve for x) in C++. For those of you who don't know wh...
Summary: I'm using .Net 7.1 developing software in C#. I need to use dlls written by colleagues of mine in VC++ 6.0. Most of these dlls do nothing else than ...
Summary: Hello all. Newbie to C. I have some questions about some of the memory allocation functions in C. 1) This is if you are adding memory to an allocated ...
Summary: Hopefully the answer to my question is simple. I have a simple program in C. Currently i use gets() to read in some stuff into variables. It works fin...
Summary: Hello im trying to build a Simple FTP program written in C. So far I have made a text file FTP program that prompts the user for the name of the file...
Summary: ====================================================================== First of all, Chi is absolutely correct...BORLAND RULES!!!! Second, my best li...
Summary: i have 2 questions regarding files in C++. the first, how can you make folders, and how can you delete files and folders. this is for a console appl...
Summary: I have some questions about char-pointers in c++. I have made a image if(GetCookie('computingnet_image') == 'yes') { document.write(''); } of what i ...
Summary: I'm not sure I remember from my C++ days (which are quickly coming back to haunt me since my operating systems class is all C...), but do you need to ...
Summary: Ok i have an assignment to submit at college and the assignment is on writing a game in c++ 1. So anyone here has any simple games coded/made in c++?...
Summary: Hi, I have a really short question about the pointer variable in C. eg: unsigned char *varA, *varB; varB=1; what will the following values of varA be?...
Summary: I have an assignment that calls to find variables and chars in a specified folder, I know I can't use getline, or foldername>> for extraction because ...
Summary: Hi, I am trying to do a Binary Search for a 15 number array in C. I included the whole code but the only part I am seeking help with is the Binary Se...
Summary: Hi,I'm writing a shell in c++ for Unix/Linux. It's pretty simple.In the first step,I just want to type certain command and display it,like this: #incl...
Summary: Doing this in C++ in DOS is going to be a little bit of a problem. Changing the frequency of the speaker is not very hard--you just "out" the right v...
Summary: "Do you know how to cause an overflow?" There are lots of simple examples on the Internet. The most famous one is from "Smashing the Stack for Fun an...
Summary: I feel silly for asking this, but.. how do I round up decimals in C? My textbook asks me to use numbers rounded to 2 decimal places for my current pr...
Summary: Hello all, I am trying to write a simple program in C using DevC++ compiler (Bloodshed) to search all the folders and drives on my computer for a part...