¶
- 행 하
- 하
- 하
¶
- 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;
}









