“Como converter a função malloc em cpp” Respostas de código

MALLOC em 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

Como converter a função malloc em cpp

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

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

Respostas semelhantes a “Como converter a função malloc em cpp”

Perguntas semelhantes a “Como converter a função malloc em cpp”

Mais respostas relacionadas para “Como converter a função malloc em cpp” em C++

Procure respostas de código populares por idioma

Procurar outros idiomas de código