changed some stuff

This commit is contained in:
rattatwinko
2025-04-29 20:21:12 +02:00
parent 2f4f755781
commit b489370357
6 changed files with 51 additions and 0 deletions

9
arrays/array.cpp Normal file
View 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;
}