|
||||||
| C and C++ C and C++ forum for discussing all forms of C except for C#. These languages are powerful low level languages used for creating Operating Systems, Device Drivers, compilers and much more. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||||
|
I need to store delemeters in an array - is it better to do this:
char delem[3] = {'a', 'b', 'c'); or char delem[3] = {97, 98, 99); or char delem[3] = {0x61, 0x62, 0x63);
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum | My Blog Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall |
| Sponsored Links |
|
|
|
|||||
|
Do the one that best reflects the intended meaning. They are logically equivalent.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Programming is a branch of mathematics. |
|
|||
|
Another common way to do it is:
Code:
char *myDelims = "abc"; If you are unsure of the size that the string is going to be, you might want to use the malloc() function to ensure enough space on the heap. Last edited by broncoslb; 03-03-2008 at 06:17 PM. |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Problems passing a serialized array in a session variable | gszauer | PHP Forum | 3 | 02-15-2008 12:18 PM |
| Help regarding the sorting of arrays with flags! | Yuriy M | C and C++ | 3 | 10-12-2007 11:30 PM |
| Usage of array structures to increment letter instances of text | Yuriy M | C and C++ | 2 | 09-13-2007 11:49 AM |
| fread into array position | kenna | C and C++ | 0 | 08-17-2007 09:03 AM |
| Python 2D array question | annannienann | Python | 3 | 04-23-2007 05:36 PM |
| WingedPanther | ........ | 2753.6 |
| Xav | ........ | 2704 |
| Brandon W | ........ | 1702.32 |
| John | ........ | 1207.73 |
| marwex89 | ........ | 1175.24 |
| morefood2001 | ........ | 966.05 |
| dcs | ........ | 655.75 |
| Steve.L | ........ | 475.59 |
| orjan | ........ | 418.58 |
| Aereshaa | ........ | 383.54 |