changed some stuff
This commit is contained in:
9
arrays/array.cpp
Normal file
9
arrays/array.cpp
Normal file
@@ -0,0 +1,9 @@
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
string cars[4] = { "Volvo" , "Opel", "Volkswage" , "xyn" };
|
||||
std::cout << cars[1];
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user