Thread: Arrays in C

  1. #1
    Registered User
    Join Date
    Jan 2006
    Posts
    1

    Question Arrays in C

    i'm a learner so
    can ne one help me out in makin my array bigger ...

    its 3 dimensional [1600]*[1200]*[3]

    i'm using it for image processing

    plz help in a way that i need not break the matrix cause i have some linear operations to perform

    plz help

  2. #2
    Bond sunnypalsingh's Avatar
    Join Date
    Oct 2005
    Posts
    162
    go for dynamic memory allocation

  3. #3
    Registered User
    Join Date
    Jan 2005
    Posts
    204

  4. #4
    and the hat of int overfl Salem's Avatar
    Join Date
    Aug 2001
    Location
    The edge of the known universe
    Posts
    39,660
    or maybe
    static int array[1600][1200][3];

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. pointers & arrays and realloc!
    By zesty in forum C Programming
    Replies: 14
    Last Post: 01-19-2008, 04:24 PM
  2. Replies: 16
    Last Post: 01-01-2008, 04:07 PM
  3. Need Help With 3 Parallel Arrays Selction Sort
    By slickwilly440 in forum C++ Programming
    Replies: 4
    Last Post: 11-19-2005, 10:47 PM
  4. Building B-Tree from Arrays
    By 0rion in forum C Programming
    Replies: 1
    Last Post: 04-09-2005, 02:34 AM
  5. Crazy memory problem with arrays
    By fusikon in forum C++ Programming
    Replies: 9
    Last Post: 01-15-2003, 09:24 PM