Search Results

3
votes
10answers
735 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
463 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 …
3
votes
5answers
489 views

How to execute some code before entering the main() routine in VC?

I am reading Microsoft's CRT source code, and I can come up with the following code, where the function __initstdio1 will be executed before main() routine. The question is, how to execute …
1
vote
9answers
408 views

Why short is stored as 4 bytes in a struct in C?

I have the following two structs: The problem is the sizeof(Content) returns 160. The struct consists of 11 shorts, 6 ints, 76 chars, 7 floats, 1 double, totally adding to 158 bytes. I have …
1
vote
6answers
655 views

How to convert an arbitrary large integer from base 10 to base 16?

The program requires an input of an arbitrary large unsigned integer which is expressed as one string in base 10. The outputs is another string that expresses the integer in base 16. For ex …
-2
votes

Hex to Decimal conversion [K&R exercise]

Yesterday I wrote a function like this. You can see my code below. /* Converting a hex string to integer, assuming the heading 0x or 0X has already been removed and pch is not N …