/* * Copyright (c) 2014, 煙台大學計算機學院 * All rights reserved. * 文件名稱:test.cpp * 作 者:劉暢 * 完成日期:2014 年 12 月 11 日 * 版 本 號:v1.0 * * 問題描述:用指針作形參,其核心是實現int (char str[])函數。; * 輸入描述:無需輸入; * 程序輸出:輸出要求輸出的。
(1)用數組名作行參;
#includeusing namespace std; int astrlen(char str[]); int main() { char s1[50]="Hello world. "; char s2[50]="Good morning. "; char s3[50]="vagetable bird! "; cout<(2)用指針作行參; #includeusing namespace std; int astrlen(char *str); int main() { char s1[50]="Hello world. "; char s2[50]="Good morning. "; char s3[50]="vagetable bird! "; cout<
運行結果: