show/hide this revision's text 5 deleted 1 characters in body

In some code I've inherited, I see frequent use of size_t with the std namespace qualifier. For example:

std::size_t n = sizeof( long );

It compiles and runs fine, of course. But it seems like bad practice to me (perhaps carried over from C?).

Isn't it true that size_t is built into C++ and therefore in the global namespace? Is a header file include needed to use size_t in C++?

Another way to ask this question is, would the following program (with no includes) be expected to compile on all C++ compilers?

size_t main(foo()
{
    return sizeof( long );
}
show/hide this revision's text 4 edited tags
show/hide this revision's text 3 deleted 13 characters in body

In some code I've inherited, I see frequent use of size_t with the std namespace qualifier. For example:

std::size_t n = sizeof( long );

It compiles and runs fine, of course. But it seems like bad practice to me (perhaps carried over from C?).

Isn't it true that size_t is built into C++ and therefore in the global namespace? After all no Is a header file includes are include needed to use size_t in C++.?

Another way to ask this question is, would the following program (with no includes) be expected to compile on all C++ compilers?

size_t main()
{
    return sizeof( long );
}
show/hide this revision's text 2 added 226 characters in body
show/hide this revision's text 1