[B]独習C++ 第2章 前章の理解度チェック1



//NOTE
//------------------------------------------------------------------------>
// Title      : 独習C++ 第2章 前章の理解度チェック
//------------------------------------------------------------------------>
// Author     : Yuhei Tsukahara
// Make       : 2012/08/29
// Finish     : 2012/08/29
// LastSave   : 2012/08/29
//------------------------------------------------------------------------>
// Abstruct   :
// C++形式の入出力を使用し、
// ユーザに文字列の入力を求め、
// その文字列の長さを表示するプログラムを作成しなさい
//------------------------------------------------------------------------>

#include<iostream>
using namespace std;

#define NUM_STR 100

int main( void ){

char str[ NUM_STR ];
int i = 0 ;

cout << "input a strings\n";

cin >> str;

while( str[i] != '\0' ){
i++;
}

cout << "strings number is \t" << i;

return 0;
}