“cara mengubah fungsi malloc ke cpp” Kode Jawaban

malloc di 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

cara mengubah fungsi malloc ke cpp

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

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

Jawaban yang mirip dengan “cara mengubah fungsi malloc ke cpp”

Pertanyaan yang mirip dengan “cara mengubah fungsi malloc ke cpp”

Lebih banyak jawaban terkait untuk “cara mengubah fungsi malloc ke cpp” di C++

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya