336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
#include <stdio.h>
struct studentInfo
{
int studentNumber;
double height;
};
void sortStudentInfo( struct studentInfo* p
,int size);
void printStudentInfo( struct studentInfo* p
,int size);
int main( )
{
struct studentInfo s[5]
= { 1, 170.5, 2, 180.3,
3, 172.3, 4, 150.3,
5, 180.6};
sortStudentInfo(s, 5);
printStudentInfo(s, 5);
return 0;
}
'실습과제 모음' 카테고리의 다른 글
CPP 문자열 찾기 실습 답 (0) | 2014.04.26 |
---|---|
CPP 문자열 클래스 실습 (0) | 2014.04.26 |
C 배열 연습문제 (0) | 2014.04.13 |
C 언어 달력 소스코드 (0) | 2014.04.05 |
C 배열 실습 10명 성적처리 (0) | 2014.04.05 |