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: I have a problem, I need an sql (for access) statement that will alway return the coming sunday's date from any day in the week including sunday, can ...
Summary: When I compile my C program, the answers I get as an output are correct (ex. 10.0, 10.0, 10.0), but it does not show the correct digit after the decim...
Summary: lol, (i'm null) that's funny. If you want to learn C++ I suggest you get the best damn c++ book available: C++ How To Program - Deitel AMAZON BARNES ...
Summary: I do not believe there is a limit in what you pass to a system call, as long as your system resources can accomodate the load (memory, etc). The only ...
Summary: You need to start with the correct understanding of the definitions of the words you have including with your inquiry. To start with the words you us...
Summary: Hello, I want to demostrate the difference between double and long double in C++, but here is what I got: double d = 0.88 ^5000; long double dl = 0....
Summary: Ahhh yes i remember posting about the same problem. Trust me in C++ classes are a must. If you have learned about structs then you already knows what ...
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've been trying to write a bitmap in C++, but so far the closest i've gotten is a blank bitmap file which says "drawing failed" when I open it. T...
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: 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: 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: I am trying to write a program in C that takes a positive integer input and returns all of the combinations of three numbers that add up to the intege...
Summary: I won't repeat the answers already posted, but I will explain roughly how this works, in my typical painfully-long-winded style... Headers can be used...
Summary: Hi, im having difficulty with the random number generator in C, rand(). What Im trying to do is estimate the mean of a real number generator. So I n...
Summary: Ok having a problem, been through 3 c++ classes and want to continue learning on my own, but really have no clue where to keep looking. Need to think...
Summary: A => I think I know what I'm saying B => I do know what I'm saying if A && B I should speak up. if A || B the issue is still in doubt. Jack - if I rea...
Summary: I have been having some problems lately... I am writing my own opensource OS called Ness in C. I have a multiboot ELF kernel that boots up :-), turns ...
Summary: I am having problems with some code containing a linked list which i am writing in C i have defined an order structure to hold data for an order and t...
Summary: Dear All, I have been given an assignment to implement a Hierarchal Family Tree in C Language. 1. The program first gets an input of Root Node Name. ...
Summary: I have just looked at the previous thread for this and as i cannot past any follow ups, I am told to post here so here goes. I am trying Ronin's code:...
Summary: I was loking for a really good tutorial about pointers and their use in C/C++ but none of he books I've read was good enough; if anyone can give me a ...
Summary: can any body explain what does this func do in C: int Mparse (int j, int val1, int val2) { return ((int) (fmod(j, pow(2, v1)) / pow(2, v2))); } ...
Summary: In the small program described below, is there some kind of special 'null' character in C (NOT '\0' of course!) which I could pass as the 4th argument...