Forum: C
Oct 7th, 2006, 8:16 PM
|
|
Replies: 2
Views: 225
|
Forum: C++
Oct 7th, 2006, 8:13 PM
|
|
Replies: 23
Views: 550
Dawei:
Thank you yes, for pointing this out. I...
Dawei:
Thank you yes, for pointing this out. I made a big mistake by saying C code is 100% compatible with C++. I have started another thread for this discussion regarding the example that you...
|
Forum: C++
Oct 7th, 2006, 3:59 PM
|
|
Replies: 23
Views: 550
Seif:
I agree, it is a nice luxury to use...
Seif:
I agree, it is a nice luxury to use vectors, but like I had mentioned (and mention several times below) I was using this as an example. This example was posed as an alternate method that...
|
Forum: C++
Oct 6th, 2006, 12:54 AM
|
|
Replies: 23
Views: 550
|
Forum: C
Oct 6th, 2006, 12:46 AM
|
|
Replies: 3
Views: 187
My version of 2D array.. is this wrong??
I received some comments in th C++ forum regarding this implementation, that it is incorrect and doesn't (or shouldn't) work.
This example creates a 2D array. I am passing the 2D array by...
|
Forum: C++
Oct 5th, 2006, 9:54 PM
|
|
Replies: 23
Views: 550
Do you have something against me??
I am just...
Do you have something against me??
I am just mentioning what I like to use and how I use it to accomplish my goals when using an array. My comment about resizing (what I considered to be) an array...
|
Forum: C++
Oct 5th, 2006, 6:42 PM
|
|
Replies: 23
Views: 550
|
Forum: C++
Oct 5th, 2006, 6:19 PM
|
|
Replies: 23
Views: 550
|
Forum: C++
Oct 4th, 2006, 11:22 PM
|
|
Replies: 23
Views: 550
|
Forum: C
Oct 4th, 2006, 11:10 PM
|
|
Replies: 9
Views: 258
There are many ways to do this- here is an...
There are many ways to do this- here is an example:
windows has a mechanism where you can wait for a certain event (there is something similar for pthreads as well) to be signaled.
You can have a...
|
Forum: C++
Oct 1st, 2006, 11:15 PM
|
|
Replies: 4
Views: 248
Realize that "you can't print the matrix until...
Realize that "you can't print the matrix until you know how long the longest value is". If this were my problem, I would look at all the numbers and find out which one is longest. Then go ahead...
|
Forum: C
Oct 1st, 2006, 11:03 PM
|
|
Replies: 9
Views: 397
|
Forum: C
Oct 1st, 2006, 10:52 PM
|
|
Replies: 19
Views: 472
At the terminal type:
$ ps -auxwww
if that...
At the terminal type:
$ ps -auxwww
if that doesn't work try:
$ ps -aef
(I think thats the syntax) That will show you list of all processes and some otehr information that is useful: such as...
|
Forum: C
Oct 1st, 2006, 12:57 AM
|
|
Replies: 21
Views: 477
|
Forum: C++
Oct 1st, 2006, 12:40 AM
|
|
Replies: 21
Views: 660
|
Forum: C++
Oct 1st, 2006, 12:21 AM
|
|
Replies: 3
Views: 227
Look at this page for using recv, should...
Look at this page for using recv, should help:
http://www.opengroup.org/onlinepubs/009695399/functions/recv.html
Realize that recv returns a value. That value is how many bytes were read.
So read...
|