That's because the file is stored in blocks, and the smallest block size is 4KB. Select the file and press Alt-Enter and you'll see the actual...
What's the patent number? "I read on a blog" isn't much of a source. Also you seem to be confusing patents with copyrights. Patent infringement...
Welcome to programming. It's not easy for anyone. Look through your course notes and think about them; you'll find all you need in what you've...
So, you've just started on a programming course, eh? How did I guess. Break it down into simple steps. Start with a program that prints a line...
If it's possible in VB then it'll be possible in C++ as well. How would you do it in VB; that might indicate how it can be done in C++.
Same way you do it with normal arrays, e.g. A[5]=27; I would strongly advise you start reading a C book; it will tell you all this.
Ending a case block with a recursive call back into main is a very bad idea. Trust me on this; you definitely do not want to do that. What I...
What commands do you use to compile and link the program?
You're trying to declare main within the graph() function. C does not support nested functions so to fix this you have to move the declaration of...
amanbua: it would be good if you fixed this code so that it would work for ANY year, not just 1900-1999. Then post the new code. I don't see...
Just use the code Saswat gave you, so instead of float mavg[1000], sds[1000] /* etc */ ; use this: float *mavg, sds[1000] /* etc */ ;...
Assuming that is enough to deduce the series, then using the same technique as before I get 113. 1 2 1 7 5 4 12 5 0 -4 19 7 2 2 6...
Nothing found here: http://www.research.att.com/~njas/sequences/?q=1%2C2%2C7%2C12%2C19%2C42&sort=0&fmt=0&language=english&go=Search Without...
> A computer, or CPU does not multitask. Yes it does. http://en.wikipedia.org/wiki/Computer_multitasking At this point in time my computer is...
Just write a small program to fopen() the file in binary mode, then get the first 32 characters from the file and print the hex code and the...
If you're going to post "demo/example" code then please observe the following: 1. Use sensible variable names, not a, k, p, n11. This is so the...
Duplicate of http://www.go4expert.com/showthread.php?t=19295 Unless the code is different, I haven't checked for that. Posting duplicate threads...
If your stack is big enough: double x[100000]; If not you'll have to do it on the heap instead: double *x=new double[100000]; //... delete[] x;
Don't be silly, of course it's not real. Chain letters usually aren't, no matter how much they insist they are.
Try starting the k loop at n instead of 1.
Separate names with a comma.