“comment convertir la fonction malloc en cpp” Réponses codées

malloc en c

#include <iostream>
#include <cstdlib>
using namespace std;

int main() {

  // allocate memory of int size to an int pointer
  int* ptr = (int*) malloc(sizeof(int));

  // assign the value 5 to allocated memory
  *ptr = 5;

  cout << *ptr;

  return 0;
}

// Output: 5
piyush kant tripathi

comment convertir la fonction malloc en cpp

int *scratch = (int *)malloc(size * sizeof(int));

int* scratch = new int[size];
RX Legend

Réponses similaires à “comment convertir la fonction malloc en cpp”

Questions similaires à “comment convertir la fonction malloc en cpp”

Plus de réponses similaires à “comment convertir la fonction malloc en cpp” dans C++

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code