I have installed the gcc compiler from this sudo apt-get install build-essential command
and my program code is
#include<stdio.h>
main()
{
int *b;
b = (int*)malloc(10*sizeof(int));
printf("b=%u\n\n",b);
printf("b+1=%u\n\n",(b+1));
printf("b+2=%u\n\n",(b+2));
b[2]=4;
printf("*(b+2)=%d\n\n",*(b+2));
}
when i try to compile this program from cc -c program.c command
then i get some error

malloc. That's just a good way to hide errors. – Cody Gray Jan 15 at 18:28#include <stdlib.h>– talonmies Jan 15 at 18:29mallocis a way to be compatible with C++. But it surely isn't necessary here. – pmr Jan 15 at 18:32