星野アイ.com
Category A
Subcategory a
Category B
Subcategory b
Subsubcategory 1
Subsubcategory 2
post-03
Subcategory c
Study
C Language
ARM Device
C Example
C task
Linux
Day1
Day2
Day3
Day4
perceptron
Subcategory c
VLSI Circuits Design
Day1
Subsubcategory 1
Subsubcategory 2
example
comment system
Home
markdown guide
posting guide
visitor counter
Contact
Copyright © 2024 |
Yankos
Home
>
Study
>
C Language
> ARM Device
💖 星野アイ (◍•ᴗ•◍)♡ ✧*。
ARM Device
example page
What is Lorem Ipsum? This is an example post ‘<’. Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 수정wogjd Heading 1 Heading 2 Heading 3 Heading 4 Heading 5 Heading 6 This is the bold text and this is the italic text and let’s do strikethrough. Don’t forget to code your dream. Fruits: 🍎 🍋 Other fruits: 🍑 🍏 Numbers: first second third Click here | Header | Description | | :–: | :–: | | Cell1 | Cell2 | | Cell1 | Cell2 | | Cell1 | Cell2 | | Cell1 | Cell2 | To print message in the console, use console.log('your message') and .. console.log('your message') 1일차 기록 source /home/env/env_tools.csh custom_compiler& Custom Compiler 실행 및 초기화면 나의 작업 공간인 Library 생성 (name, tech_library 선택) schematic 생성을 위해 CellView 추가 (schematic name: NOT) schematic 원할한 작업을 위해 Design Options setting (Editing modify) Key Roll I istance W wire L label(wire name) P pin U back C copy Q property F2 save M move E inside cell ctrl + E outside cell 단축키 및 역할 기록 Check and Save 통해 Error 확인
Study
· 2025-06-16
[ex01] 포인터 배열
문제 설명 배열 a를 이용하여 x[2]를 30으로 만드는 코드를 만드시오 #include <stdio.h> int x[4] = {1,2,3,4}; void main(void) { int *a[4] = {x+3, x+2, x+1, x}; printf("%d\n", x[2]); = 30; printf("%d\n", x[2]); } 출력 예시 3 30 정답 #include <stdio.h> int x[4] = {1,2,3,4}; void main(void) { int *a[4] = {x+3, x+2, x+1, x}; printf("%d\n", x[2]); //a[0][-1] = 30; //a[1][0] = 30; //a[2][1] = 30; a[3][2] = 30; printf("%d\n", x[2]); } 메모 printf 내부의 \n 습관화 필요
Study
· 2025-03-18
<
>
Touch background to close