woodstockwoodstock.hashnode.dev·Feb 21, 2024[배열] 배열(2)우리가 특정 자료형의 변수를 선언하면 이는 메모리상 어딘가에 특정 크기만큼의 자리를 차지하게 된다. 만약 비슷한 종류의 값을 모아서 저장하고 싶다면 어떻게 해야 할까? 메모리상에서 여러 값을 연이어서 저장하고 사용하는 방법과 그 이점을 알아보자. 전역 변수 #include <cs50.h> #include <stdio.h> const int N = 3; int main(void) { // 점수 배열 선언 및 값 저장 int s...Harvard CS50arrayAdd a thoughtful commentNo comments yetBe the first to start the conversation.