B
bob
If you have this:
int c;
Which is faster?
a. c = c + 1;
b. c++;
int c;
Which is faster?
a. c = c + 1;
b. c++;
If you have this:
int c;
Which is faster?
a. c = c + 1;
b. c++;
If you have this:
int c;
Which is faster?
a. c = c + 1;
b. c++;
I have doubts.Victor said:None. Without a doubt, it's
c. ++c;
V
None. Without a doubt, it's
c. ++c;
James said:None. Without a doubt, it'sc. ++c;
Sorry Victor, but that's false. [..]
James said:Sorry Victor, but that's false. [..](e-mail address removed) wrote:
If you have this:
int c;
Which is faster?
a. c = c + 1;
b. c++;
None. Without a doubt, it's
c. ++c;
Sorry, *what* is false? "None"?
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.