当前位置:编程学习 > C/C++ >>

Day 4: Arrays and Strings

Array
 
fixed number of elements of the same type stored sequentially in memory
initialization, or unexpected results
arrays are passed by reference
multidimensional arrays are merely an abstraction for programmers, as all the elements in the array are sequential in memory
 
String
 
simply a character array and can be manipulated as such
char hello[] = {h,e,l,l,o,,}
char hello = "hello"
Cpp代码 
#include <iostream> 
  #include <cstring> 
  using namespace std; 
 
  int main() { 
  char fragment1[] = "Im a s"; 
  char fragment2[] = "tring!"; 
  char fragment3[20]; 
  char finalString[20] = ""; 
 
  strcpy(fragment3, fragment1); 
  strcat(finalString, fragment3); 
  strcat(finalString, fragment2); 
 
  cout << finalString; 
  return 0; 
 } 
补充:软件开发 , C语言 ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,