Array

Lesson

코딩도장 핵심요약: 1D Array 핵심요약

Example Code

Example 1

C_array1d_example.c


Exercise

Exercise 1

C_array1D_exercise.c

Declare and define the following functions

void addVec(float _src1[], float _src2[], float _dst[], int _vecLength);

Exercise 2

C_array1d_exercise2.c

Assign array address to pointer ptr.

Print each element of 1D array by using pointer

Last updated

Was this helpful?