程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> Day 4: Arrays and Strings

Day 4: Arrays and Strings

編輯:關於C語言

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; 
 } 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved