#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
int alloc_size = 10;
int* buffer = (int*) malloc (alloc_size);
//Allocate memory block which can fit 10 integers
Code Example |
---|
Cpp :: c++ catch Unhandled exception |
Cpp :: integer max value c++ |
Cpp :: tabeau dynamique c++ |
Cpp :: c++ classes |
Cpp :: Arduino Real TIme Clock |
Cpp :: Converting Strings to Numbers in C/C++ |
Cpp :: loops in c and c ++ |
Cpp :: remove element from c++ |
Cpp :: compare values within within a vector c++ |
Cpp :: shift element to end of vector c++ |
Cpp :: dangling pointer in cpp |
Cpp :: how we can write code to remove a character in c++ |
Cpp :: valid parentheses in c++ |
Cpp :: ? in cpp |
Cpp :: sort an array in c++ |
Cpp :: gcd in cpp |
Cpp :: queue cpp |
Cpp :: c++ map vector as keys |
Cpp :: pthread c++ example with output |
Cpp :: building native binary with il2cpp unity |
Cpp :: faster solutions |
Cpp :: new expression |
Cpp :: find n unique integers sum up to zero |
Cpp :: Access Elements in C++ Array |
Cpp :: PascalName seperate strings |
Cpp :: function param pointer to struct prototype in c |
Cpp :: qpushbutton clicked connect c++ |
Cpp :: cpp stacks |
Cpp :: a suprise... c++ |
Cpp :: max of 3 numbers in c++ |