//
// arrayoperation.h
// C10- 动态内存分配
//
// Created by dllo on 15/10/19.
// Copyright (c) 2015年 dllo. All rights reserved.
//
#import <Foundation/Foundation.h>
typedef struct student {
char name[20];
char sex;
int number;
int score;
}student;
void printstudent(student *p, int count);
void sortstudent(student *p, int count);