“inicializar un vector a 0” Código de respuesta

Inicializar todos los elementos de Vector a 0 C

 vector<int> vect1(10); //number of elements in vector
    int value = 0;
    fill(vect1.begin(), vect1.end(), value);
Sore Scarab

Inicializar todos los elementos de Vector a 0 C

// Create a vector of size n with
    // all values as 10.
    vector<int> vect(n, 10);
Important Ibex

inicializar un vector a 0

// CPP program to create an empty vector
// and push values one by one.
#include <iostream>
#include <vector>
using namespace std;
 
int main()
{
    int n = 3;
 
    // Create a vector of size n with
    // all values as 10.
    vector<int> vect(n, 10);
 
    for (int x : vect)
        cout << x << " ";
 
    return 0;
}
Cooperative Chimpanzee

Respuestas similares a “inicializar un vector a 0”

Preguntas similares a “inicializar un vector a 0”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código