chapter 12 홍정모 교수님 따라배우는 C


chapter 12 홍정모 교수님  따라배우는 C

#본문의 저작권은 인프런과 홍정모 교수님께 있습니다.#본문의 목적은 강의 복습 및 단순 참고용 입니다.// 12.1 메모리 레이아웃 훑어보기//12.2객체와 식별자, lvalue, rvalue#define _CRT_SECURE_NO_WARNINGS#include <stdio.h>int main(){/*objectan object is simply a block of memory that can store a value. 메모리에서 값을 가져야 객체라고 할 수 있다.object has more develped meaning in cpp and object oriented programming(oop 객체지향형)IdentifiersNames for variables, functions, macros, and other entities변수이름 함수이름 다른객체들*/int var_name = 3; //creates an object called var_name//..........



원문링크 : chapter 12 홍정모 교수님 따라배우는 C