14 lines
172 B
C++
14 lines
172 B
C++
Array Initialization
|
|
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main ()
|
|
{
|
|
char name[ ] = {'J', 'e', 'f', 'f', '/0' };
|
|
|
|
cout << name;
|
|
|
|
return 0;
|
|
}
|