본문 바로가기

연습문제 연습 1) 1~100까지 합을 나타내라. package kr.ac.busanit; public class FirstProject { public static void main(String[] args) { // TODO Auto-generated method stub System.out.printf("홍\n"); System.out.println("홍길"); System.out.println("홍길동\n"); int i, sum = 0; for(i=1; i 더보기
연결리스트 Linked List #include /*struct _node { int iNum; }; //1번 typedef struct _node{} NODE;*/ //2번 typedef struct _node { int iNum; struct _node *next; }NODE; //1번+2번(이렇게 쓰는 구조체가 편리) int main() { NODE one; NODE two; NODE three; NODE *p; //초기값 one.iNum = 1; two.iNum = 2; three.iNum = 3; //값출력 printf("one.iNum = %d\n", one.iNum); printf("two.iNum = %d\n", two.iNum); printf("three.iNum = %d\n", three.iNum.. 더보기
TCP 클라이언트 소켓 인터페이스를 사용할 때 통신의 단계에 따라 서버와 클라이언트의 사용 방법이 각각 다르므로 클라이언트 및 서버의 구분은 매우 중요하다. 일단 클라이언트부터 알아보자. 클라이언트의 임무는 수동적으로 접속을 기다리고 있는 서버에게 통신을 개시하는 것이다. 전형적인 TCP 클라이언트의 통신은 다음의 4가지 단계를 가진다. 1. socket()를 이용하여 TCP 소켓을 생성 2. connect()를 이용하여 서버와의 연결을 설정 3. send(), recv()를 이용하여 통신을 수행 4. close()를 이용하여 연결을 종료 TCPEchoClient4.c는 IPv4 기반의 TCP에코 클라이언트를 구현한 코드이다. #include #include #include #include #include #include.. 더보기