게시글
고민있어요
2021.11.07 21:10
인프런 할인 d-1이면 오늘까진건가요 아니면 d-0까지 가는건가요?
- 0
- 1
- 214
질문&답변
2021.06.03
이 강의에 대한 질문은 아닌데 궁금한거 하나 질문드립니다
빠르고 정확한 답변 감사합니다!
- 1
- 2
- 149
질문&답변
2021.02.28
my_functions.h 파일 질문입니다
감사합니다!! 이해되었어요 ㅎㅎ
- 0
- 7
- 433
질문&답변
2021.02.25
my_functions.h 파일 질문입니다
(사진) 이건 에러메시지입니당,,ㅜ
- 0
- 7
- 433
질문&답변
2021.02.25
my_functions.h 파일 질문입니다
-main.c- #define _CRT_SECURE_NO_WARNINGS #include #include "my_functions.h" #include "my_structures.h" #include "my_macros.h" extern int status; int main() { #include "hello_world.h" printf("PI = %f\n", PI); printf("%p %d\n", &status, status); print_status(); printf("%d\n", multiply(51, 2)); printf("main()\n"); printf("Static function address %p\n", multiply); printf("Static variable address %p\n", &si); print_address(); return 0; }- my_function.h - #pragma once #include "my_functions.h" extern int status; int si = 0; extern int add(int a, int b); int multiply(int a, int b) { return a * b; } // int subtract(int a, int b) inline int subtract(int a, int b) { return a - b; } void print_status(); void print_address(); -my_function.c- #include "my_functions.h" #include int status = 0; int add(int a, int b) { return a + b; } void print_status() { printf("Address = %p, Value = %d\n", &status, status); } void print_address() { printf("print_address()\n"); printf("Static function address %p\n", multiply); printf("Static variable address %p\n", &si); }이렇게 교수님이랑 static 뺴곤 다 동일합니다 ㅜㅜ 왜이런지모르겠네요,,
- 0
- 7
- 433
질문&답변
2021.02.25
my_functions.h 파일 질문입니다
my_function.h에 있는 int multiply와 int si에서 static을 떼니까 _multiply already defined in main.obj _si already defined in main.obj one or more multiply defined symbols found 라고 링킹에러 뜨는데 왜이런지 모르겠네요 ㅜㅜstatic 떼도 잘 빌드되시나요?
- 0
- 7
- 433