Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 종만북
- 생활코딩
- BOJ
- Cleancode
- Algorithm
- 정수론
- 따라하면서 배우는 C언어
- 따라하며 배우는 C언어
- String
- Math
- udemy
- C
- BFS
- server
- Python
- php
- Algospot
- greedy
- 따배씨
- C언어
- DP
- JavaScript
- graph
- 인프런
- web
- BASIC
- 백준
- programmers
- dfs
- sorting
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 14.20 이름 공간 공유하기 본문
따배씨 - 따라하며 배우는 C언어
14강 구조체_2
14.20 이름 공간 공유하기 Namespace
#include <stdio.h>
int iamfunction(){
return 0;
}
int main(){
/*
namespace
- Identify parts of a program in wich a name is recognized
- You an use the same name for one variable and one tag.
- C++: use 'namespace; to use the same identifiers in the duplicated scopes
*/
int myname = 123;
{
int myname = 345;
//double myname = 3.14; //ERROR
}
struct rect {double x; double y;};
// int rect = 123; // OK in C (Not OK in C++), 권장하지 않음
struct rect rect = { 1.1, 2.2 }; // struct rect and rect are in different categories, struct 의 name & struct rect 의 name
/*
typedef struct rect rect;
rect rect = { 1.1, 2.2 }; //Not OK
*/
//int iamfunction = iamfunction(); //ERROR
return 0;
}
- 같은 이름을 다른 용도로 사용하는것은 좋지 않음
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 14.22 함수 포인터의 사용 방법 (0) | 2021.07.11 |
---|---|
[따배씨] 14.21 함수 포인터의 원리 (0) | 2021.07.11 |
[따배씨] 14.19 열거형 연습문제 (0) | 2021.07.07 |
[따배씨] 14.18 열거형 (0) | 2021.07.06 |
[따배씨] 14.17 익명 공용체 (0) | 2021.07.06 |
Comments