Table of contents
코드
#include <stdio.h>
struct major{
double math;
double english;
};
struct major swap(struct major);
int main(void)
{
struct major s1 = { 0, 0 };
printf("수학점수와 영어점수를 입력하세요\n");
scanf_s("%lf %lf", &s1.math, &s1.english);
printf("수학 %.2lf 영어 %.2lf \n", s1.math, s1.english);
s1 = swap(s1);
printf("수학 %.2lf 영어 %.2lf\n", s1.math, s1.english);
}
struct major swap(struct major s1)
{
double temp;
temp = s1.math;
s1.math = s1.english;
s1.english = temp;
return s1;
}
'소프트웨어 > C' 카테고리의 다른 글
C언어 문자열 포인터 Swap 예시 (0) | 2022.02.20 |
---|---|
C언어 동적 할당 및 해제 malloc 예시 (0) | 2022.02.20 |
C언어 구조체 배열 선언 및 초기화 (0) | 2022.02.20 |
C언어 구조체 연결리스트 정렬 삽입 삭제 (0) | 2022.02.20 |
C언어 영타연습기 프로그램 (0) | 2022.02.20 |