Skip to content
Snippets Groups Projects
Commit 90a18cad authored by Waldson Patricio do Nascimento Leandro's avatar Waldson Patricio do Nascimento Leandro
Browse files

Hello, world

parent cd8f4562
No related branches found
No related tags found
No related merge requests found
#include <iostream>
int main(int argc, char* argv[]) {
int numeros[5] = {
3, 4, 5, 1, 6
};
for (size_t i = 0; i < 5; ++i) {
std::cout << numeros[i] << "\n";
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment