Tag: c
All the articles with the tag "c".
-
[C] Pointer
Pointers can be understood as literally pointing to, pointing action objects. Regardless of the role of a pointer, since it is also an objec...
-
[C] 포인터
포인터는 말 그대로 가르키는 것, 가르키는 행위 객체 정도로 이해할 수 있다. 포인터의 역할과는 상관없이 그 또한 객체이기 때문에 변수로 정의되고 활용될 수 있다. Data typeDtype에 대한 post에서 소개한 정수/실수/문자 자료형처럼 가르키...
-
[C] Fining max value
To find the maximum value in an array, you can directly find the maximum value or return the index where the maximum value of the array is l...
-
[C] Bubble sort, 버블 정렬
Bubble sorting performs sorting in the form of comparing and exchanging values of two adjacent elements with the name given to the form perf...
-
[C] Selection sort
Selective sorting is a sorting algorithm that replaces the largest/smallest value among the comparison targets at a specific position. In th...