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
- build 에러
- Linux
- 시스템프로그래밍
- geth 설치
- aes decrypt
- aes ctr decrypt
- OS1
- gcc를 사용한 컴파일 예제
- ar과 make 사용법
- build:15
- aes_ctr
- ethereum
- c언어로 쉽게 풀어쓴 자료구조
- aes ctr
- studio
- gcc 실행
- ouster
- ousterstudio
- c
- geth 설치 에러
- catkin_make
- error
- aes-ctr
- floyld
- ros
- gcc
- aes-128-ctr
- geth 설치 안됨
- LIDAR
- build:12
Archives
- Today
- Total
CODERJH
gcc를 사용한 컴파일 과정 본문
오늘은 리눅스 환경에서 gcc를 활용해서 코딩하는 방법을 연습해 보고
간단한 strcpy() 함수를 mystrcpy()로 만들어 보았다.
실행 코드 및 결과화면은 아래에 있다.
1. 실행코드
#include<stdio.h> void mystrcpy(char *dst, char *src); int main() { char str[80]; mystrcpy(str,"Hello"); puts(str); } |
-> Mystrcpy.c
#include<string.h> void mystrcpy(char *dst, char *src) { int i=0; while(src[i]!='\0')// 마지막 부분이 되면 종료 { dst[i]=src[i]; // src의 처음부터 dst의 마지막 부분에 삽입 i++; // 위치 변경 } } |
-> Hello.c
2. 실행 동작 화면
'SystemProgramming' 카테고리의 다른 글
ar과 make 사용법 (0) | 2022.05.10 |
---|