Tag: programming
All the articles with the tag "programming".
-
[C] Pointer application
The pointer concept is simple, but the use case is confusing, so let's look at a few simple functions. The first is when you use an incremen...
-
[C] 포인터 활용
포인터 개념은 단순하지만 사용사례가 헷갈리기 쉬우므로 몇가지 간단한 함수를 통해 알아보고자 한다. 첫번째는 증감연산자와 포인터를 함께 쓸 때이다. a, a 두 개는 operationop에서 설명한 것과 같이 연산자의 우선순위에 따라 처리된다. 먼저 a...
-
[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...