모 ¶
- 는 모
- 는 모
- 를 는 람들 모
¶
- C++료.
¶
- 대 :
- : , ,
목 ¶
배, , , , 링 리, 리(-_-;)등 료를 C부!
¶
- 는 문(String), (Stack) (Queue) . 는 는 ?
- 디 - 6 4 7 7()
¶
~cpp #include <iostream> using namespace std; #include <string.h> int main() { int b=4; cin>>b; char *a = new char[b]; cout << strlen(a); return 0; }
2004/05/24 's 부내 ¶
~cpp #include <iostream> using namespace std; int main() { /* case 1. int front[5] = {1,2,3,4,5}; cout << front[2] << endl; // 번 배 cout << front << endl; // 번 배 cout << *front << endl; // 번 배 cout << (front+4) << endl; // 번 배 cout << *(front+4) << endl; // 번 배 */ /* case 2. int b; cin >> b; int array[b]; // array 배 못 러 . */ /* case 3. int b; cin >> b; int * a = new int[b]; // 는 는 받 므 바르 . */ return 0; }