C 포인터 Lab
#include void swap(int* x, int* y) { int tmp; tmp = *x; *x = *y; *y = tmp; } int main() { int a = 100, b = 200; printf("swap() 호출 전 a=%d, b=%d\n", a, b); swap(&a, &b); printf("swap() 호출 후 a=%d, b=%d\n", a, b); return 0; } int get_line_parameter(int x1, int y1, int x2, int y2, float* slope, float* yintercept) { if (x1 == x2) //분모는 0이 될 수 없음. return -1; else { *slope = (float)(y2 - y1) / (float)(x..