please consider the following code :
#include "stdafx.h"
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>
struct Person {
char *name;
int age;
int height;
int weight;
};
struct Person *Person_create(char *name, int age, int height, int weight)
{
struct Person *who = (struct Person*) malloc(sizeof(struct Person));
assert(who != NULL);
who->name = strdup(name);
who->age = age;
who->height = height;
who->weight = weight;
return who;
}
the curious line is
struct Person *who = (struct Person*) malloc(sizeof(struct Person));
I searched internet a bit for malloc() usages. about half of them are written with casting, others are not. on vs2010, without (struct Person*) cast an error emerges:
1>c:\users\juhyunlove\documents\visual studio 2010\projects\learnc\struct\struct\struct.cpp(19): error C2440: 'initializing' : cannot convert from 'void *' to 'Person *'
1> Conversion from 'void*' to pointer to non-'void' requires an explicit cast
So what is a proper way to create a pointer and assign memory to it?
malloc(). – H2CO3 Dec 21 '12 at 17:36struct.cpptostruct.cto make Visual Studio unearth its incredibly outdated C compiler. – Cubbi Dec 21 '12 at 17:41assertthe return value ofmalloc. Check its return value proper with anifstatement. – netcoder Dec 21 '12 at 18:34