Inserting a number to an array

Please support our C++ advertiser: Intel Parallel Studio Home
Thread Solved

Join Date: Jan 2008
Posts: 3,820
Reputation: VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute 
Solved Threads: 501
Featured Poster
VernonDozier VernonDozier is offline Offline
Senior Poster

Re: Inserting a number to an array

 
0
  #11
Oct 16th, 2008
Here is your program basically, with more accurate cout statements to reflect the array. What you were displaying before and what was actually in the array are two different things. The display in this revised program is a more accurate display of the array contents. Try inserting a big number like a million into the array and see whether it crashes or runs to completion.

  1. #include <iostream>
  2. #include <iomanip>
  3.  
  4. using namespace std;
  5.  
  6. void printIt (int numbers[],int length);
  7. int removeAt (int numbers[], int length, int index);
  8. void insertAt (int numbers[], int length, int insertItem, int index);
  9.  
  10.  
  11. int main()
  12. {
  13.  
  14. int numbers[] = {4,23,65,34,82,37,12,17,24,36,82,51};
  15. int length;
  16. int index;
  17. int insertItem;
  18.  
  19.  
  20. cout<<"Removing an item from the list..."<<endl;
  21. cout<<endl;
  22.  
  23. printIt(numbers,12);
  24. removeAt(numbers,12,index);
  25. printIt (numbers, 12);
  26. insertAt(numbers,12,insertItem,index);
  27. printIt(numbers,12);
  28.  
  29. system ("PAUSE");
  30. return 0;
  31. }
  32.  
  33. void printIt (int numbers[],int length)
  34. {
  35. cout<<"The current array..."<<endl;
  36.  
  37. for (int i = 0; i<length; i++)
  38. {
  39. cout<<numbers[i]<<" ";
  40. }
  41. cout<<endl;
  42. }
  43.  
  44. int removeAt (int numbers[], int length, int index)
  45. {
  46. int item;
  47.  
  48. cout<<endl;
  49. cout<<"There are "<<length<<" item(s) in the list (position 0 through 11)"<<endl;
  50. cout<<"Enter the position of the item to be removed."<<endl;
  51. cout<<"Enter 0 for the first item and so on: ";
  52. cin>>item;
  53.  
  54. if (item > length)
  55. {
  56. cout<<endl;
  57. cout<<"!!!!!!!!!!!!!!!!!! ERROR !!!!!!!!!!!!!!!!!!"<<endl;
  58. cout<<endl;
  59.  
  60.  
  61. printIt (numbers, length);
  62.  
  63.  
  64. cout<<endl;
  65. cout<<endl;
  66. cout<<"!!!! Index out of Range !!!!"<<endl;
  67. cout<<"There are "<<length<<" item(s) in the list (position 0 through 11)"<<endl;
  68. cout<<"You entered position "<<item<<", which is OUT OF RANGE."<<endl;
  69. cout<<"Enter the position of the item to be removed."<<endl;
  70. cout<<"Enter 0 for the first item and so on: ";
  71. cin>>item;
  72. cout<<endl;
  73. cout<<"After removing the item at position "<<item<<", array is..."<<endl;
  74. cout<<endl;
  75. }
  76.  
  77. printIt (numbers, length);
  78. }
  79.  
  80.  
  81. void insertAt (int numbers[], int length, int insertItem, int index)
  82. {
  83.  
  84. int item;
  85.  
  86.  
  87. cout<<"Inserting an item in the list..."<<endl;
  88. cout<<endl;
  89.  
  90. printIt(numbers, length);
  91.  
  92. cout<<endl;
  93. cout<<"There are 10 items(s) in the list (position 0 through 11)"<<endl;
  94. cout<<"Enter item to be inserted and its position"<<endl;
  95. cout<<"Position of the first element is 0,"<<endl;
  96. cout<<"so if you want the #5 at the front type in: "<<endl;
  97. cout<<"5 (space) 0 "<<endl;
  98. cin>>insertItem;
  99. cin>>index;
  100.  
  101.  
  102. if (index > length)
  103. {
  104. cout<<endl;
  105. cout<<"!!!!!!!!!!!!!!!!!! ERROR !!!!!!!!!!!!!!!!!!"<<endl;
  106. cout<<endl;
  107.  
  108. printIt (numbers, length);
  109.  
  110. cout<<endl;
  111. cout<<endl;
  112. cout<<"!!!! Index out of Range !!!!"<<endl;
  113. cout<<"There are "<<length<<" item(s) in the list (position 0 through 11)"<<endl;
  114. cout<<"You entered position "<<index<<", which is OUT OF RANGE. Please try again."<<endl;
  115. cout<<endl;
  116. cout<<"Enter item to be inserted and its position"<<endl;
  117. cout<<"Position of the first element is 0,"<<endl;
  118. cout<<"so if you want the #5 at the front type in: "<<endl;
  119. cout<<"5 (space) 0 "<<endl;
  120. cin>>insertItem;
  121. cin>>index;
  122. }
  123.  
  124. cout<<endl;
  125. cout<<"After inserting the item at position "<<insertItem<<", array is..."<<endl;
  126. cout<<endl;
  127.  
  128. numbers[insertItem-1] = insertItem;
  129. // cout<<numbers[insertItem-1]<<" "; // get rid of this line!
  130.  
  131. printIt (numbers, length);
  132. }

In some of your displays, you are hardcoding the number of elements in the array into your cout statements (i.e. line 49 and other lines). These should be based on the length variable. Line 93 in particular doesn't make sense. You say you have the array has ten elements, then say those elements are stored in positions 0 through 11.
Reply With Quote Quick reply to this message  
Join Date: Mar 2008
Posts: 370
Reputation: NinjaLink is an unknown quantity at this point 
Solved Threads: 0
NinjaLink NinjaLink is offline Offline
Posting Whiz

Re: Inserting a number to an array

 
0
  #12
Oct 16th, 2008
Alright, I made some corrections with the variables and stuff. It should look atleast alittle better than before, but I'm still have trouble. When I come to my insertAt function and print my current array at the top of the function, it prints out everything except the 8th element in the same order as if I never removed any element. I know something is wrong, but what is the problem? Also, when I insert a number in my insertAt function, the number doesn't get added to the array at all, but it shows that one of my elements is removed. Help!

  1. #include <iostream>
  2. #include <iomanip>
  3.  
  4. using namespace std;
  5.  
  6. void printIt (int numbers[],int length);
  7. int removeAt (int numbers[], int length, int index);
  8. void insertAt (int numbers[], int length, int insertItem, int index);
  9.  
  10.  
  11. int main()
  12. {
  13.  
  14. int numbers[] = {4,23,65,34,82,37,12,17,24,36,82,51};
  15. int length = 12;
  16. int index;
  17. int insertItem;
  18.  
  19. cout<<"Removing an item from the list..."<<endl;
  20. cout<<endl;
  21.  
  22. printIt(numbers,12);
  23. removeAt(numbers,12,index);
  24. insertAt(numbers,12,insertItem,index);
  25. // printIt(numbers,12);
  26.  
  27. system ("PAUSE");
  28. return 0;
  29. }
  30.  
  31. void printIt (int numbers[],int length)
  32. {
  33.  
  34. for (int i = 0; i<length; i++)
  35. {
  36. cout<<numbers[i]<<" ";
  37. }
  38. cout<<endl;
  39. }
  40.  
  41. int removeAt (int numbers[], int length, int index)
  42. {
  43.  
  44.  
  45. cout<<endl;
  46. cout<<"There are "<<length<<" item(s) in the list (position 0 through 11)"<<endl;
  47. cout<<"Enter the position of the item to be removed."<<endl;
  48. cout<<"Enter 0 for the first item and so on: ";
  49. cin>>index;
  50.  
  51. while (index > length)
  52. {
  53. if (index > length)
  54. {
  55. cout<<endl;
  56. cout<<"!!!!!!!!!!!!!!!!!! ERROR !!!!!!!!!!!!!!!!!!"<<endl;
  57. cout<<endl;
  58.  
  59. cout<<"The current array..."<<endl;
  60. printIt(numbers,12);
  61. cout<<endl;
  62. cout<<endl;
  63. cout<<"!!!! Index out of Range !!!!"<<endl;
  64. cout<<"There are "<<length<<" item(s) in the list (position 0 through 12)"<<endl;
  65. cout<<"You entered position "<<index<<", which is OUT OF RANGE."<<endl;
  66. cout<<"Enter the position of the item to be removed."<<endl;
  67. cout<<"Enter 0 for the first item and so on: ";
  68. cin>>index;
  69. cout<<endl;
  70. cout<<"After removing the item at position "<<index<<", array is..."<<endl;
  71. cout<<endl;
  72. cout<<"The current array is..."<<endl;
  73. printIt(numbers,12);
  74. }
  75. }
  76. for (int i = 0; i < length; i++)
  77. {
  78. if (i != index)
  79. {
  80. cout<<numbers[i]<<" ";
  81. }
  82. }
  83. cout<<endl;
  84.  
  85.  
  86.  
  87.  
  88. }
  89.  
  90.  
  91. void insertAt (int numbers[], int length, int insertItem, int index)
  92. {
  93.  
  94. cout<<endl;
  95. cout<<"****************************************************"<<endl;
  96. cout<<endl;
  97. cout<<"Inserting an item in the list..."<<endl;
  98. cout<<endl;
  99. cout<<"The current array..."<<endl;
  100. for (int i = 0; i < length; i++)
  101. {
  102. if (i != index)
  103. {
  104. cout<<numbers[i]<<" ";
  105. }
  106. }
  107. cout<<endl;
  108.  
  109. cout<<endl;
  110. cout<<"There are 10 items(s) in the list (position 0 through 10)"<<endl;
  111. cout<<"Enter item to be inserted and its position"<<endl;
  112. cout<<"Position of the first element is 0,"<<endl;
  113. cout<<"so if you want the #5 at the front type in: "<<endl;
  114. cout<<"5 (space) 0 "<<endl;
  115. cin>>insertItem;
  116. cin>>index;
  117.  
  118.  
  119. if (index > length)
  120. {
  121. cout<<endl;
  122. cout<<"!!!!!!!!!!!!!!!!!! ERROR !!!!!!!!!!!!!!!!!!"<<endl;
  123. cout<<endl;
  124.  
  125. printIt (numbers, length);
  126.  
  127. cout<<endl;
  128. cout<<endl;
  129. cout<<"!!!! Index out of Range !!!!"<<endl;
  130. cout<<"There are "<<length<<" item(s) in the list (position 0 through 10)"<<endl;
  131. cout<<"You entered position "<<index<<", which is OUT OF RANGE. Please try again."<<endl;
  132. cout<<endl;
  133. cout<<"Enter item to be inserted and its position"<<endl;
  134. cout<<"Position of the first element is 0,"<<endl;
  135. cout<<"so if you want the #5 at the front type in: "<<endl;
  136. cout<<"5 (space) 0 "<<endl;
  137. cin>>insertItem;
  138. cin>>index;
  139. }
  140.  
  141. cout<<endl;
  142. cout<<"After inserting the item at position "<<insertItem<<", array is..."<<endl;
  143. cout<<endl;
  144.  
  145. numbers[index-1] = insertItem;
  146.  
  147. for (int i = 0; i < length; i++)
  148. {
  149. if (i != index)
  150. {
  151. cout<<numbers[i]<<" ";
  152. }
  153. }
  154.  
  155. }
Reply With Quote Quick reply to this message  
Join Date: Mar 2008
Posts: 370
Reputation: NinjaLink is an unknown quantity at this point 
Solved Threads: 0
NinjaLink NinjaLink is offline Offline
Posting Whiz

Re: Inserting a number to an array

 
0
  #13
Oct 16th, 2008
any help? i can't figure it out.
Reply With Quote Quick reply to this message  
Join Date: Jan 2008
Posts: 3,820
Reputation: VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute 
Solved Threads: 501
Featured Poster
VernonDozier VernonDozier is offline Offline
Senior Poster

Re: Inserting a number to an array

 
0
  #14
Oct 17th, 2008
Originally Posted by NinjaLink View Post
When I come to my insertAt function and print my current array at the top of the function, it prints out everything except the 8th element in the same order as if I never removed any element.
  1.  
  2. int removeAt (int numbers[], int length, int index)
  3. {
  4. if (index > length)
  5. {
  6. cout<<endl;
  7. cout<<"!!!!!!!!!!!!!!!!!! ERROR !!!!!!!!!!!!!!!!!!"<<endl;
  8. cout<<endl;
  9.  
  10. cout<<"The current array..."<<endl;
  11. printIt(numbers,12);
  12. cout<<endl;
  13. cout<<endl;
  14. cout<<"!!!! Index out of Range !!!!"<<endl;
  15. cout<<"There are "<<length<<" item(s) in the list (position 0 through 12)"<<endl;
  16. cout<<"You entered position "<<index<<", which is OUT OF RANGE."<<endl;
  17. cout<<"Enter the position of the item to be removed."<<endl;
  18. cout<<"Enter 0 for the first item and so on: ";
  19. cin>>index;
  20. cout<<endl;
  21. cout<<"After removing the item at position "<<index<<", array is..."<<endl;
  22. cout<<endl;
  23. cout<<"The current array is..."<<endl;
  24. printIt(numbers,12);
  25. }
  26. }
  27. for (int i = 0; i < length; i++)
  28. {
  29. if (i != index)
  30. {
  31. cout<<numbers[i]<<" ";
  32. }
  33. }
  34. cout<<endl;
  35. }

It prints out the array as if you never removed an element because you in fact have never removed any element in the removeAt function. Do you see anywhere in the above code where you assign any value to any array element anywhere, a line that looks like this:

  1. numbers[?] = ?;

No? Then the array is unchanged. As I mentioned in my last post, your cout statements are obfuscating your program. That's why I replaced the cout statements in the functions with calls to the printIt function. Your array display code in the functions is not displaying the actual array due to lines like this:

  1. if (i != index)
  2. {
  3. cout<<numbers[i]<<" ";
  4. }

If you need lines like this to get the array to display correctly, that means that the array itself has not changed correctly. Display the array with the printIt function in order to get a real idea of what the program is doing. To delete an element from an array, you need to move all of the array elements after that element to the left by one:

  1. int indexToDelete = ?;
  2. for (int i = ?; i < ?; i++)
  3. numbers[i] = numbers[i+1];

You also, when you delete an element, need to adjust the array length since it is now one less than it used to be.
Reply With Quote Quick reply to this message  
Join Date: Mar 2008
Posts: 370
Reputation: NinjaLink is an unknown quantity at this point 
Solved Threads: 0
NinjaLink NinjaLink is offline Offline
Posting Whiz

Re: Inserting a number to an array

 
0
  #15
Oct 17th, 2008
So, I shouldn't use the cin statement for "item"?
Reply With Quote Quick reply to this message  
Join Date: Jan 2008
Posts: 3,820
Reputation: VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute VernonDozier has a reputation beyond repute 
Solved Threads: 501
Featured Poster
VernonDozier VernonDozier is offline Offline
Senior Poster

Re: Inserting a number to an array

 
0
  #16
Oct 17th, 2008
Originally Posted by NinjaLink View Post
So, I shouldn't use the cin statement for "item"?
That's a separate issue. You don't have a variable called item. You have a variable called insertItem. As someone earlier mentioned, you are passing it by value uninitialized to a function, which makes it of no use, plus you are then overwriting it with your cin statement before you use it, which also makes it of no use.

But you have problems before then in your removeAt function, so I'd take care of those first.
Reply With Quote Quick reply to this message  
Join Date: Mar 2008
Posts: 370
Reputation: NinjaLink is an unknown quantity at this point 
Solved Threads: 0
NinjaLink NinjaLink is offline Offline
Posting Whiz

Re: Inserting a number to an array

 
0
  #17
Oct 17th, 2008
Alright, I made the changes for the values to be passed through the functions correctly. I need help with the inserting the number now. I can't seem to get it to work. The code I'm trying to use is at the bottom insertAt function. What is the correct way of doing this?



Here is my updated code:

  1. #include <iostream>
  2. #include <iomanip>
  3.  
  4. using namespace std;
  5.  
  6. void printIt (int numbers[],int length);
  7. int removeAt (int numbers[], int length, int index);
  8. void insertAt (int numbers[], int length, int insertItem, int index);
  9.  
  10.  
  11. int main()
  12. {
  13.  
  14. int numbers[12] = {4,23,65,34,82,37,12,17,24,36,82,51};
  15. int length;
  16. int index;
  17. int insertItem;
  18.  
  19.  
  20. cout<<"Removing an item from the list..."<<endl;
  21. cout<<endl;
  22.  
  23. printIt(numbers,12);
  24. removeAt(numbers,12,index);
  25. insertAt(numbers,12,insertItem,index);
  26.  
  27.  
  28.  
  29. system ("PAUSE");
  30. return 0;
  31. }
  32.  
  33. void printIt (int numbers[],int length)
  34. {
  35.  
  36. cout<<"The current array..."<<endl;
  37.  
  38. for (int i = 0; i<length; i++)
  39. {
  40. cout<<numbers[i]<<" ";
  41. }
  42. cout<<endl;
  43.  
  44. }
  45.  
  46. int removeAt (int numbers[], int length, int index)
  47. {
  48.  
  49.  
  50.  
  51. cout<<endl;
  52. cout<<"There are "<<length<<" item(s) in the list (position 0 through 11)"<<endl;
  53. cout<<"Enter the position of the item to be removed."<<endl;
  54. cout<<"Enter 0 for the first item and so on: ";
  55. cin>>index;
  56.  
  57. if (index > length)
  58. {
  59. cout<<endl;
  60. cout<<"!!!!!!!!!!!!!!!!!! ERROR !!!!!!!!!!!!!!!!!!"<<endl;
  61. cout<<endl;
  62.  
  63. cout<<"The current array..."<<endl;
  64.  
  65. for (int i = 0; i<length; i++)
  66. {
  67. cout<<numbers[i]<<" ";
  68. }
  69. cout<<endl;
  70. cout<<endl;
  71. cout<<"!!!! Index out of Range !!!!"<<endl;
  72. cout<<"There are "<<length<<" item(s) in the list (position 0 through 11)"<<endl;
  73. cout<<"You entered position "<<index<<", which is OUT OF RANGE."<<endl;
  74. cout<<"Enter the position of the item to be removed."<<endl;
  75. cout<<"Enter 0 for the first item and so on: ";
  76. cin>>index;
  77. cout<<endl;
  78. cout<<"After removing the item at position "<<index<<", array is..."<<endl;
  79. cout<<endl;
  80. cout<<"The current array..."<<endl;
  81. }
  82.  
  83. for (int i = 0; i < 11; i++)
  84. {
  85. numbers[i] = numbers[i+1];
  86. cout<<numbers[i]<<" ";
  87. }
  88.  
  89. cout<<endl;
  90. cout<<endl;
  91. cout<<"************************************************************";
  92. cout<<endl;
  93. cout<<endl;
  94.  
  95.  
  96. }
  97.  
  98.  
  99. void insertAt (int numbers[], int length, int insertItem, int index)
  100. {
  101.  
  102.  
  103. cout<<"Inserting an item in the list..."<<endl;
  104. cout<<endl;
  105.  
  106. printIt(numbers,11);
  107.  
  108. cout<<endl;
  109. cout<<"There are 10 items(s) in the list (position 0 through 11)"<<endl;
  110. cout<<"Enter item to be inserted and its position"<<endl;
  111. cout<<"Position of the first element is 0,"<<endl;
  112. cout<<"so if you want the #5 at the front type in: "<<endl;
  113. cout<<"5 (space) 0 "<<endl;
  114. cin>>insertItem;
  115. cin>>index;
  116.  
  117.  
  118. if (index > length)
  119. {
  120. cout<<endl;
  121. cout<<"!!!!!!!!!!!!!!!!!! ERROR !!!!!!!!!!!!!!!!!!"<<endl;
  122. cout<<endl;
  123.  
  124. printIt(numbers,11);
  125. cout<<endl;
  126. cout<<endl;
  127. cout<<"!!!! Index out of Range !!!!"<<endl;
  128. cout<<"There are "<<length<<" item(s) in the list (position 0 through 11)"<<endl;
  129. cout<<"You entered position "<<index<<", which is OUT OF RANGE. Please try again."<<endl;
  130. cout<<endl;
  131. cout<<"Enter item to be inserted and its position"<<endl;
  132. cout<<"Position of the first element is 0,"<<endl;
  133. cout<<"so if you want the #5 at the front type in: "<<endl;
  134. cout<<"5 (space) 0 "<<endl;
  135. cin>>insertItem;
  136. cin>>index;
  137. }
  138.  
  139. cout<<endl;
  140. cout<<"After inserting the item at position "<<insertItem<<", array is..."<<endl;
  141. cout<<endl;
  142. cout<<"The current array..."<<endl;
  143.  
  144. numbers[index-1] = insertItem;
  145.  
  146. for (int i = 0; i < 11; i++)
  147. {
  148. cout<<numbers[i]<<" ";
  149. }
  150. cout<<endl;
  151. }
Reply With Quote Quick reply to this message  
Join Date: Sep 2008
Posts: 429
Reputation: Denniz is on a distinguished road 
Solved Threads: 15
Denniz's Avatar
Denniz Denniz is offline Offline
Posting Pro in Training

Re: Inserting a number to an array

 
0
  #18
Oct 17th, 2008
Alright, I will comment base on your latest codes, cos I don't really have time to go through all the posts. Also, I will skip removeAt() function at this moment and focus on the rest.

1. At the main function, you are still passing uninitialized variables "insertItem" and "index" by values to the functions (line 24 and 25). If you have no use for them, take them out from the parameters. Use local variables instead.

2. Line 140 should be this instead:
  1. cout<<"After inserting the item at position "<<index<<", array
  2.  

3. At line 144, according to your instruction at line 132, it should be the following instead:
  1. numbers[index] = insertItem;

4. Still, if you perform point 3, you are only OVERWRITING the array item, not inserting it. If you are going to continue using integer array for insertion, there are 2 ways you can do about it:

a) Declare a large array size (say 100) initially, fill the first 12 with your numbers and leave the rest. When doing insertion at say position #2, first use a loop to "push back" all items from position #2 onwards, then write the new value at position #2. Something like this:
  1. for(int i=length; i > index;i--)
  2. {
  3. number[i] = number[i-1];
  4. }
  5. number[index] = insertItem;
You need use the variable length to keep track of the up-to-date length of the array that is filled.

b) The second method would be using dynamic memory allocation for the number array. Every time when you want to do insertion, you will have to copy all the content of the number array into a temporary array, then reallocate memory for the number array to expand its size, then copy content of temporary array back into the number array. I don't recommend this method though its more storage efficient, it will introduce you even more errors in the process.

5. As I said in earlier post, checking of invalid inputs can use loop instead. Something like this:
  1. do
  2. {
  3. /// Prompt user for item and index
  4.  
  5. /// Get user's inputs
  6.  
  7. /// If user's inputs is invalid, display error message
  8.  
  9. } while (index > length);

6. A lot of hardcoding here and there which is yet another bad practice, but nevermind get the logic right first.
Reply With Quote Quick reply to this message  
Join Date: Mar 2008
Posts: 370
Reputation: NinjaLink is an unknown quantity at this point 
Solved Threads: 0
NinjaLink NinjaLink is offline Offline
Posting Whiz

Re: Inserting a number to an array

 
0
  #19
Oct 17th, 2008
Thanks for helping me. I'm making this as solved because it works now. I appreciate it. The reason why I have the stuff in the parameters is because the directions told me to put them in the parameters, otherwise, i would use them as local variables.
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC