how can i hardcode data into the records,thanks...

Code:
void Handle_Array_Dynamic()
{	//it dynamically allocates for an array of 10 student records
	int i;
	int *A; 
	A = (int*)malloc(10*sizeof(int));
	PrintStudentArray(A);
                // how can i hardcode data into the records
	free(A);
}