Array

Lesson

코딩도장 핵심요약: 1D Array 핵심요약arrow-up-right

Example Code

Example 1

C_array1d_example.carrow-up-right


Exercise

Exercise 1

C_array1D_exercise.carrow-up-right

Declare and define the following functions

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

Exercise 2

C_array1d_exercise2.carrow-up-right

Assign array address to pointer ptr.

Print each element of 1D array by using pointer

Last updated