0netw0m1ra

[VScode] 오류 잡기 - error: conflicting types for '함수' 본문

개발

[VScode] 오류 잡기 - error: conflicting types for '함수'

M1RA 2021. 1. 13. 15:48

error: conflicting types for '함수이름'

note: previous declaration of '함수이름'

 

<문제>

함수의 위치가 잘못되거나 이미 다른 라이브러리에서 같은 이름의 함수를 사용하고 있는 경우 문제 발생

 

<해결 방안>

방법1) main()함수에서 사용된 함수 미리 main()함수 전에 선언

(아래와 같이 입력)

#include <stdio.h>

void sum(){

    //코드 작성

}

void main(){

    sum(); //위에서 해당 함수 작성 후 호출

}

 

방법2) 함수 이름 변경

 

해결 전
해결 후

 

'개발' 카테고리의 다른 글

[VScode] 오류잡기 - true  (0) 2021.02.24
[VScode] 오류잡기 - VS Code C bool  (0) 2021.02.18
[VScode] VS Code 단축키  (0) 2021.01.13
[VScode] 오류 잡기 - exit code: 3221225477  (0) 2021.01.10
[VScode] Windows10. VS Code Python 설치  (0) 2021.01.06