Forum: C++ Oct 26th, 2004 |
| Replies: 2 Views: 3,609 Last week I’ve find the way to resolve my problem: I decide to copy the code from the server to my notebook to take a look at it during last weekend; Now, my old notebook have no multiports nor... |
Forum: C++ Oct 15th, 2004 |
| Replies: 5 Views: 2,615 First of all: What a Compiler is?
Most canonical answers are like this: “It is a program that, starting from a high level programming language code, produces an equivalent executable machine... |
Forum: C++ Oct 15th, 2004 |
| Replies: 5 Views: 2,615 hope this file helps you! |
Forum: C Oct 15th, 2004 |
| Replies: 1 Views: 1,766 Try this way:
for(i=0;i<2;i++)
for(j=0;j<2;j++)
for(k=0;k<2;k++)
c[i][j] += a[i][k]*b[k][j]; |
Forum: C++ Oct 14th, 2004 |
| Replies: 2 Views: 3,609 Here is the part of code regarding the problem mentioned above ....I hope this make it more clear.
const unsigned long sz = 64; //I prefer 'const' compiler instruction to pre-compiler #define... |
Forum: C Oct 12th, 2004 |
| Replies: 4 Views: 4,730 Yes .... that is correct!!! NULL is meant for pointers;
In this case, using NULL instead of '\0' works, but it is NOT correct. Thanks for remembering this aspect.
I've not notice the quotes... |
Forum: C Oct 12th, 2004 |
| Replies: 4 Views: 4,730 Just try to modify the first part (var declarations) like this:
char desiredgrade=NULL;
double score=0.0;
double currentaverage=0.0;
double weight=0.0;
Compiler is warning you that you... |
Forum: IT Professionals' Lounge Oct 12th, 2004 |
| Replies: 1 Views: 13,615 What do you think about a private data transmission protocol, at application level: so it IS really indipendent from whatsoever underlayers (portability depends on your programming platform): lets... |
Forum: C++ Oct 12th, 2004 |
| Replies: 2 Views: 3,609 Hi to every one :cheesy:
(I'll say it once: forgive my bad english :sad: )
I have a question!!!
Is there any way to get information aboute Dial-tone PHISICALLY presense without performing a... |