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
- OS1
- aes-ctr
- floyld
- c언어로 쉽게 풀어쓴 자료구조
- geth 설치
- aes_ctr
- c
- geth 설치 에러
- ar과 make 사용법
- catkin_make
- build:12
- error
- build 에러
- Linux
- build:15
- 시스템프로그래밍
- ros
- gcc를 사용한 컴파일 예제
- aes ctr decrypt
- gcc 실행
- ouster
- geth 설치 안됨
- ethereum
- LIDAR
- aes ctr
- ousterstudio
- studio
- gcc
- aes decrypt
- aes-128-ctr
Archives
- Today
- Total
CODERJH
ar과 make 사용법 본문
ar과 make를 사용해서 앞의 포스팅에서 작성했던 mystrcpy()를 라이브러리 파일로 만든 후
컴파일 하는 과정의 코드와 간단한 설명을 작성해 두었다.
또한 make명령어를 사용해서 지수연산하는 코드와 컴파일 과정을 작성해 두었다.
1. mystrcpy.c 를 libmine.a로 라이브러리를 만든 후 컴파일
#include<stdio.h> void mystrcpy(char *dst, char *src); int main() { char str[80]; mystrcpy(str,"Hello"); puts(str); } |
-> Hello.c
#include<string.h> void mystrcpy(char *dst, char *src) { int i=0; while(src[i]!='\0')// 마지막 부분이 되면 종료 { dst[i]=src[i]; // src의 처음부터 dst의 마지막 부분에 삽입 i++; // 위치 변경 } } |
-> MyStrcpy.c
2. mystrcpy.c 를 libmine.a로 라이브러리를 만든 후 컴파일
3. 컴파일 및 실행 결과
4. 지수 연산하는 프로그램을 만들기 ( make 명령어를 사용하여 실행)
#include<stdio.h> int exponent(int num, int exp); int main() { int number, expo; scanf("%d%d",&number,&expo); printf("%d",exponent(number,expo)); } |
-> main.c
#include<stdio.h> int exponent(int num, int exp) { int result=1; for(int i=0;i<exp;i++){ result*=num; } return result; } |
-> exponent.c
5. 컴파일 및 실행결과
'SystemProgramming' 카테고리의 다른 글
gcc를 사용한 컴파일 과정 (0) | 2022.05.09 |
---|