문제

I couldn't find anything on this, but probably its just because I don't know how to search, because i don't know how to call it.

I tried to compile some C-Code and got the following error:

/path/to/file.h:55:32: error: path/to/include.h: No such file or directory

I know the error and i know that the problem is in file.h at line 55 - where's an include, which doesn't exist.

But what does the 32 stand for?

Marty

도움이 되었습니까?

해결책

It's the number of the character within line 55.

This might also be referred to as "column number" (see comment) but I find that slightly misleading, as e.g. a tab character will generally take up more than one column in your editor, but still count as only one character for the compiler.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top