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