C언어 변수값 SWAP 하기.
C언어에서 값을 SWAP해보자. 메인함수에서 함수를 호출했을때 값을 변경시키려면 주소값을 파라미터로 보내야한다. 그 후 포인터를 사용해 temp하면 값이 변경된다. ==================================================================================== #include void SWAP(int *,int *); int main(void) { int a; int b; printf("Enter the two numbers: \n"); scanf("%d %d",&a,&b); printf("before swap: a = %d, b = %d\n",a,b); SWAP(&a,&b); printf("after swap: a = %d, b = %d",a,b)..
2018. 11. 12.
C언어 2018년 달,월 입력하면 요일 나오게 하기.
C언어 2018년 달,월 입력하면 요일 나오게 하기. 9 18 을 입력하면 9월 18일에 해당하는 화요일을 출력하도록 하겠다. ================================================================================================================ #include int main(void) { int month_day[] = { 0,31,28,31,30,31,30,31,31,30,31,30,31}; int month; int day=0; int i=0; printf("Enter the month and day: "); scanf("%d %d",&month,&day); do{ day+=month_day[i]; i++; }whi..
2018. 10. 24.