Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- catkin_make
- c언어로 쉽게 풀어쓴 자료구조
- aes-128-ctr
- ros
- gcc를 사용한 컴파일 예제
- build 에러
- ousterstudio
- geth 설치
- LIDAR
- gcc
- aes ctr
- aes ctr decrypt
- Linux
- 시스템프로그래밍
- studio
- ouster
- build:15
- ethereum
- ar과 make 사용법
- aes_ctr
- OS1
- gcc 실행
- floyld
- geth 설치 안됨
- aes decrypt
- aes-ctr
- geth 설치 에러
- error
- build:12
- c
Archives
- Today
- Total
목록gcc를 사용한 컴파일 예제 (1)
CODERJH
gcc를 사용한 컴파일 과정
오늘은 리눅스 환경에서 gcc를 활용해서 코딩하는 방법을 연습해 보고 간단한 strcpy() 함수를 mystrcpy()로 만들어 보았다. 실행 코드 및 결과화면은 아래에 있다. 1. 실행코드 #include void mystrcpy(char *dst, char *src); int main() { char str[80]; mystrcpy(str,"Hello"); puts(str); } -> Mystrcpy.c #include void mystrcpy(char *dst, char *src) { int i=0; while(src[i]!='\0')// 마지막 부분이 되면 종료 { dst[i]=src[i]; // src의 처음부터 dst의 마지막 부분에 삽입 i++; // 위치 변경 } } -> Hello.c 2..
SystemProgramming
2022. 5. 9. 23:51