3
votes
2answers
148 views

When do fundamental C++ types have an unknown initial value?

When will a fundamental C++ type, such as int or float, have an unknown initial value? How does the type of memory allocation factor in, if at all? What about the declaration? What if it's a member ...
2
votes
4answers
138 views

When are C++ implicit types initialized to 0?

I grew some doubts after discussing this with colleagues... As the title asks, when can it be assumed that built-in types will be initialized to 0 instead of an unknown value? Do the rules vary ...
72
votes
5answers
2k views

How is “int* ptr = int()” value initialization not illegal?

The following code (taken from here): int* ptr = int(); compiles in Visual C++ and value-initializes the pointer. How is that possible? I mean int() yields an object of type int and I can't assign ...
13
votes
7answers
342 views

How do I value-initialize a Type* pointer using Type()-like syntax?

Variables of built-in types can be value-initialized like this: int var = int(); this way I get the default value of int without hardcoding the zero in my code. However if I try to do similar ...
1
vote
3answers
220 views

0 initialization of C++ built-in types

suppose I have this struct (or class, my question applies to both): struct builtin { int a; int b; builtin() : a(), b(0) { } }; I know that both a and b will be initialized to 0 by ...
2
votes
5answers
595 views

How to default-initialize local variables of built-in types in C++?

How do I default-initialize a local variable of primitive type in C++? For example if a have a typedef: typedef unsigned char boolean;//that's Microsoft RPC runtime typedef I'd like to change the ...