Could anyone explain to me what I am doing wrong here please?
Code:
void testFree(){
	char * s=(char *)calloc(sizeof(char),5);
	sprintf(s, "[%d]",321);
	printf(s);
	free(s);
	return;
}
I get this error:
problem with free()-2150ody-png