일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- alphablending
- catkinworkspace
- adaptivedensitycontrol
- 3dgaussiansplatting
- tilebasedrasterizer
- vectorcalculus
- pointcloud
- imageprocessing
- sensorfusion
- rostopics
- Slam
- turtlebot
- usbcamera
- rospackages
- gaussiansplatting
- vectorfields
- turtlebot3
- 3dmapping
- Ros
- NERF
- rosnoetic
- ComputerVision
- realtimerendering
- opencv
- raspberrypi
- LIDAR
- electromagnetism
- differentiablerendering
- covariancematrix
- roslaunch
- Today
- Total
목록Computer Science/Basic (3)
Wiredwisdom

Example Files.math_utils.h#ifndef MATH_UTILS_H#define MATH_UTILS_Hint add(int a, int b);int multiply(int a, int b);int subtract(int a, int b);#endifadd.c#include "math_utils.h"int add(int a, int b) { return a + b;}multiply.c#include "math_utils.h"int multiply(int a, int b) { return a * b;}subtract.c#include "math_utils.h"int subtract(int a, int b) { return a - b;}main.c#include #include..

section .data msg db 'Hello, World!', 0Ah ; 출력할 메시지와 줄바꿈(0Ah) len equ $ - msg ; 메시지 길이 계산section .text global _start ; 프로그램 시작점 선언_start: ; write 시스템 콜 사용 mov eax, 4 ; 시스템 콜 번호 (sys_write) mov ebx, 1 ; 파일 디스크립터 (stdout) mov ecx, msg ; 메시지 주소 mov edx, len ; 메시지 길이..