To LUGNET HomepageTo LUGNET News HomepageTo LUGNET Guide Homepage
 Help on Searching
 
Post new message to lugnet.robotics.handyboardOpen lugnet.robotics.handyboard in your NNTP NewsreaderTo LUGNET News Traffic PageSign In (Members)
 Robotics / Handy Board / 7040
  Character Arrays
 
Hi... I'm wondering if there's a way to extract an element from a character array the same way it would be done for an integer array. For example, when I have: char foo[]= {1, 2, 3, 4}; char bar(int i) { return foo[i]; } ... a zero is returned for (...) (25 years ago, 5-Nov-99, to lugnet.robotics.handyboard)
 
  Re: Character Arrays
 
You're initializing foo[] wrong, it should be: char foo[] = { '1', '2', '3', '4' ); (...) the (...) (25 years ago, 5-Nov-99, to lugnet.robotics.handyboard)

©2005 LUGNET. All rights reserved. - hosted by steinbruch.info GbR