2020년 01월 29일

어학 2020. 1. 29. 22:53

1. Several representatives conducted on-the-spot interviews with customers to obtain feedback on store employee service.

 

escoted 호위하다, 바래다 주다

operate 작용하다, 운영하다

conduct 시행하다, 행동하다

transfer 옮기다 전달하다

 

 

2. We submitted a proposal for 3-month project aimed at replacing the damaged sidewalks of the community.

 

proposal 제안서, 제안

sidewalk 보도, 인도

 

3. It was difficult to spot the HRD head standing among the other members of management as they were all similarly dressed.

 

between ~둘 사이에

among (셋 이상의 사물/사람) ~사이에, ~에 둘러싸여

outside ~겉에, ~의 바깥에

through ~을 지나서, ~을 토앟여

similarly 비슷하게, 유사하게

spot 발견하다, 분간하다.

'어학' 카테고리의 다른 글

2019년 12월 19일  (0) 2019.12.20
2019년 04월 06일  (0) 2019.08.22
2019년 04월 05일  (0) 2019.08.22
2019년 04월 04일  (0) 2019.08.16
2019년 04월 03일  (0) 2019.08.06
Posted by 이미안녕
,

2019년 12월 19일

어학 2019. 12. 20. 11:58

1. Patricia must submit her application to the person collecting the forms before she leaves the office

Patricia 는 그녀가 사무실을 떠나기 전에 그 양식을 받는 사람에게 그녀의 신청서를 제출해야만 한다.

 

2. Miriam is happy with her new factory assignment as it is less repetitive than the previous work she was doing.

Miriam 은 그넛은 그녀가 하고 있었던 이전 업무보다 덜 반복적이기 때문에 자신의 새로운 공장 업무에 만족한다.

 

 

3. The agency's tour of the French countryside is so delightful that visitors who have joined it befor often sign up again.

그 대행사의 프랑스 시골 지역 관광은 매우 즐거워서 전에 참가했던 방문객들이 종종 다시 신청한다.

'어학' 카테고리의 다른 글

2020년 01월 29일  (0) 2020.01.29
2019년 04월 06일  (0) 2019.08.22
2019년 04월 05일  (0) 2019.08.22
2019년 04월 04일  (0) 2019.08.16
2019년 04월 03일  (0) 2019.08.06
Posted by 이미안녕
,
#include <stdio.h>
#include <unistd.h>
#pragma pack(push, 1) // 1 바이트 크기로 정렬
struct str_pack {
	char flags;
	int seq;
};
#pragma pack(pop) // 정렬 설정을 이저너ㅓ 상태 (기본값) 로 되돌림

union packet {
	int num;
	char empty;
};

union packet_empty {
	int num;
	char empty[0];
};

struct str_first {
	char a;
	int num_a;
	char b;
};

union uni_first {
	int num_a;
	int num_b;
};

union uni_second {
	int a;
	char b;
	double d;
	int arr[3];
};

struct Person1 {
	char name[20];
	double age;
	char sex;
};

struct Person2 {
	char name[20];
	char sex;
	double age;
};

int main()
{
	printf("PAGE_SIZE = %d\n", getpagesize());

	int i;
	int *ip;
	char ch;
	char *chp;
	char arrays[10];
	char empty[0];
	union packet pk;
	union packet_empty pk_empty;
	int int_array4[4];

	struct str_first v_str_first;
	union uni_first v_uni_first;

	pk.num = 4;
	pk.empty = 'c';
	//pk_empty.empty = "c";


	printf("sizeof(int i) = %ld\n", sizeof(i));
	printf("sizeof(int *i) = %ld\n", sizeof(ip));
	printf("sizeof(char ch) = %ld\n", sizeof(ch));
	printf("sizeof(char *chp) = %ld\n", sizeof(chp));
	printf("sizeof(char arrays[10]) = %ld\n", sizeof(arrays[10]));
	printf("sizeof(char empty[0]) = %ld\n", sizeof(empty[0]));
	printf("sizeof(union packet) = %ld\n", sizeof(union packet));
	printf("sizeof(union packet) = %ld\n", sizeof(union packet));

	printf("sizeof(int_array4) = %ld\n", sizeof(int_array4));
	printf("sizeof(int_array4[0]) = %ld\n", sizeof(int_array4[0]));

	printf("\n============ Struct Size =============\n\n");

	printf("sizeof(struct str_first) = %ld\n", sizeof(struct str_first));
	printf("sizeof(struct str_first v_str_first) = %ld\n", sizeof(v_str_first));
	printf("sizeof(union uni_first) = %ld\n", sizeof(union uni_first));
	printf("sizeof(union uni_first v_uni_first) = %ld\n", sizeof(v_uni_first));
	printf("sizeof(union uni_second) = %ld\n", sizeof(union uni_second));
	printf("sizeof(struct Person1) = %ld\n", sizeof(struct Person1));
	printf("sizeof(struct Person2) = %ld\n", sizeof(struct Person2));

	v_uni_first.num_a = 4;

	printf("%d\n", v_uni_first.num_a);
	printf("%d\n", v_uni_first.num_b);

	return 0;
}

'Programming > Programmers 알고리즘 문제' 카테고리의 다른 글

arrayshift  (0) 2019.10.24
quickselect  (0) 2019.10.24
quicksort  (0) 2019.10.24
지나가다 본 알고리즘 문제 - 택배 박스 문제  (0) 2018.04.16
파이썬 공부  (0) 2018.04.15
Posted by 이미안녕
,