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
- ar과 make 사용법
- error
- c
- aes-128-ctr
- ousterstudio
- build:15
- build:12
- aes_ctr
- gcc를 사용한 컴파일 예제
- gcc 실행
- geth 설치 에러
- ethereum
- build 에러
- gcc
- aes ctr decrypt
- studio
- catkin_make
- aes ctr
- OS1
- Linux
- c언어로 쉽게 풀어쓴 자료구조
- LIDAR
- geth 설치 안됨
- floyld
- ouster
- geth 설치
- ros
- 시스템프로그래밍
- aes decrypt
- aes-ctr
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