Search Results

3
votes
10answers
727 views

Why does Microsoft’s C compiler want the variables at the beginning of the function?

I am currently writing a C (not C++). It seems the Microsoft's C compiler requires all variables to be declared on top of the function. For example, the following code will not pass compila …
2
votes
12answers
452 views

In case of integer overflows what is the result of (unsigned int) * (int) ? unsigned or int?

In case of integer overflows what is the result of (unsigned int) * (int) ? unsigned or int? I was auditing the following function, and suddenly I came out with that question. In the below …
2
votes
2answers
288 views

Is Int32^ i = gcnew Int32() allocated on managed heap?

Basically I would like to know the difference between Int32^ i = gcnew Int32(); and Int32* i2 = new Int32(); I have written the follo …
0
votes

C++ : size of int, long, etc…

There is standard. C90 standard requires that sizeof(short) <= sizeof(int) <= sizeof(long) C99 standard requires that sizeof(short) …
0
votes

Is Int32^ i = gcnew Int32() allocated on managed heap?

I have got the answer. gcnew will allocate the object on managed heap, even the type is a value type. Therefore, Int32^ i = gcnew Int32() will allocate the newly created object on managed h …
1
vote

Recursively generate ordered substrings from an ordered sequence of chars?

Actually your question is to list all subsets from a given set. Considering the set {a,a,a,d,d,d,c,g,h,z,z}, your goal is to list all its unique subsets in order, except the empty set: {a} …