Bob Ammerman [RAMMERMAN at PRODIGY.NET] of RAm Systems says:
char string[10]; // reserves a 10 character area of memory. 'string' is the address // (ptr) of the first of those. char *sptr; // reserved memory for a _pointer_ to one or more characters sptr = "Hello"; // allocates 6 characters of memory to hold hello and a null and // puts a pointer to those six characters in sptr string = "Hello"; // illegal because you can't change the value of 'string' which is a pointer // to those 10 reserved characters. string[0] = 'H'; // valid: stores H at the first character pointed to by string *string = 'H'; // valid: does the same thing strcpy(string,"Hello"); // valid: calls a routine to copy characters from the "Hello
// memory locations pointed to by 'string'
See also:
file: /Techref/language/ccpp/strings.htm, 1KB, , updated: 2022/12/1 15:50, local time: 2025/1/24 01:32,
18.97.14.82:LOG IN
|
©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://www.piclist.com/techref/language/ccpp/strings.htm"> Strings in C</A> |
Did you find what you needed? |
PICList 2025 contributors:
o List host: MIT, Site host massmind.org, Top posters @none found - Page Editors: James Newton, David Cary, and YOU! * Roman Black of Black Robotics donates from sales of Linistep stepper controller kits. * Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters. * Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated! * Contributors: Richard Seriani, Sr. |
Welcome to www.piclist.com! |
.