array

  1. E

    Read and Write 3D array to a file in VB.net

    My Problem is i have a 3d integer array which i havenot been able to save successfully as a binary file. My code is somewhat like this (including a serializable class of which the array is a part) For i As Integer = 0 To 4 For j As Integer = 0 To 9...
  2. V

    Edge lit LED TV vs. Full array LED

    Edge lit LED TV vs. Full array LED - what is the difference in picture quality?
  3. H

    use dictionary words in c#

    i want to use random words from the dictionary in my windows phone app...can anyone help me on this...because it is tiresome if i add words in an array one by one...
  4. K

    Calculates the first derivative of a simple polynomial

    Hello All, I am new to this 8086 assembly language. I have to take user input showing message "Enter polynomial:" which further takes some input according to value entered for polynomial in loop and stored in array in order to calculate derivative. IS any one tell me how can I do? Best...
  5. K

    php help (preg_match)

    I have a problem in PHP regarding preg_match/preg_match_all funtion. This is the sample script: <?php $u_agent = $_SERVER['HTTP_USER_AGENT']; if(preg_match('/MSIE/i', $u_agent)) $ub = 'MSIE'; $known = array('version', $ub, 'other'); $pattern = '#(?<browser>' . join('|', $known) . ')[/...
  6. B

    php array adding to empty array

    I am using array to add up numbers from database and wonder if this would be valid: $array[10] = $array[10] + 1 However the initial array has not been set and is without value. Would it assume that it is equal to 0 and after the above line become 1? I hope I am explaining this right...
  7. M

    PHPMySQL Looping SELECT, is it possible?

    i extract years from mysql using the array loop like this, foreach (array(date('Y', strtotime($row['drilling_date']))) as $v) { //1988, 1989, 1990 and so on.. $current_year = $v; $next_year = $v+1; // which shows the year nest to $current_year // problem here } Is there any way i...
  8. T

    Hard disk array Setup

    Okay, here goes. I am looking for a hard disk array setup for my editing station, preferably a big casing which can take up to 5x2 tb hard disks and will have at least 3 different outputs...i.e, usb, firewire 400 and firewire 800, pci express, ethernet etc. if it can be setup as raid that is...
  9. arpanmukherjee1

    combination array

    i want to find combination of elements in an array with two rules : 1. the output should be 4 (for 4 arr elements) 2. repetitions are allowed eg {A,B,C,D} o/p: {A,A,A,A} {A,A,A,B} {A,A,B,B} '' '' '' thanx in advance.. (coding in c#/c)
  10. Sridhar_Rao

    String match in javascript

    Hello guys, I am stuck here. The textarea element has some text value like this: Ak, Am, Co, Cfp, Ce, Cfm, Ao, ... etc. As you can see each significant value is separated by a comma. I want to parse through this long string and extract each value separately into an array. I mean the array...
  11. amitash

    Fake ipl player

    Hey, i found this and boy is it funny: fakeiplplayer.blogspot.com Apparantly its a player playing for KKR in the ipl and he brings us nice stories from inside in a humourous way...Is he a player or not? I have no clue... He uses an array of nicknames for all the ppl involved in the ipl and a...
  12. Pragadheesh

    c# doubt in ArrayList

    hi everyone, using System; using System.Collections.Generic; using System.Text; using System.IO; using System.Collections; namespace arraylist { public struct ParameterValues { public ArrayList al; }; public class Program { public...
  13. redhat

    Very Basic C++ question

    I am new to programming in C++, just now I tried to create an array with 'n' index'es where n is an input no. This is what i coded: #include<iostream> using namespace std; int main() { int n=10,m; cin >> n >> m; int stor[n]; return(0); } But, VC++ 6.0, returns, the following...
  14. prem4u

    Diffrence between array and enum?

    what is Difference between array and enum ? practically i know it..but how to explain the difference theoretically.??
  15. ring_wraith

    Questions about RAID 0

    Thanks to the combination of my unlimited connection and Bitorrent, I find my 160GB Hard Disk Filled to the brim with eh... ah... cough..Linux Distros. So i thought, why not get another HDD?? So i am going to buy another 160GB HDD. But I have a few questions first: 1) I wanted to set up a...
  16. Kulz

    Doubt In C

    In an array(static array) of structures, i want to increase the array size later so as to increase a new record in the array. How shall i go forward with it? A simple e.g. would be nice... Thanks in advance....
  17. Tushar.bar

    Matrix multiplication in java

    HI all , one of my friend was challenged by me that to make a program to multiply two matrix and display result. but rule is using only one one dimensional array. he wright the prog in java, but i don't know java(only c,c++) so can any check that 1>Is the code is working...
  18. S

    Fs: Bose Speaker

    Bose speaker for sale Bose ACCOUSTICMASS 3 SERIOUS III MODEL ONE WOOFER TWO ARRAY QUEBES contact for price CHENNAI Buyer only
  19. INS-ANI

    pointer to 2-D array

    need help in pointer to 2-D array, i can get the concept, but cant grasp the practical part in this topic.Can any one plese help me find a proper study material for the same. I read Let us C, i want better!
  20. estranged12

    array initialization

    when you initialize an array, why can you only declare its elements like {1,2,3} when you initialize it and not just like x = {5,6,7}?
Top Bottom