Our website uses cookies to enhance your browsing experience.
Accept
to the top
>
Posts

Posts

Apr 05 2013
Can I use 32-bit pointers in a 64-bit application?
Andrey Karpov
At present, the Microsoft Visual C++ and GCC compilers do not allow you to use 32-bit pointers in 64-bit software created for processors based on x86-64 architecture. You can use 64-bit registers...
...
Apr 05 2013
Working with the type size_t in the functions prinft, scanf and similar functions
Andrey Karpov
To work with size_t, ptrdiff_t, intptr_t and uintptr_t types in the functions like sscanf, printf you may use size specifiers. If you are developing a Windows-application, you may use the...
...
Subscribe to the newsletter
Want to receive a monthly digest of the most interesting articles and news? Subscribe!
Apr 05 2013
Is size_t a standard type in C++? And in C?
Andrey Karpov
size_t is a base unsigned integer memsize-type defined in the standard library of C/C++ languages. This type is described in the header file stddef.h for C and in the file cstddef for C++...
...
Apr 05 2013
Difference between %p and %x
Andrey Karpov
Functions belonging to the printf function family have the type specifiers "%p" and...
...
Apr 05 2013
Obsolete descriptions of functions in MSDN taking no account of 64 bits
Andrey Karpov
MSDN is a large knowledge base, so maintaining and keeping it up-to-date is an extremely difficult and perhaps almost impossible task. In forums, there are many questions asked by programmers who...
...
Apr 05 2013
Strange errors occurring when compiling the 64-bit version of an application, error C2664
Andrey Karpov
Sometimes you may see questions about strange errors generated by the compiler when building 64-bit...
...
Apr 05 2013
Should I fix all the errors found by the static code analyzer?
Andrey Karpov
When analyzing larger projects static code analyzers usually generate a lot of error messages or warnings. And choosing whether all these errors should be fixed largely depends on current stage...
...
Apr 05 2013
How to correctly cast a pointer to int in a 64-bit application?
Andrey Karpov
The most general answer is – in no...
...
Apr 05 2013
Why do 64-bit applications work faster than 32-bit ones?
Andrey Karpov
The difference in performance between 32-bit and 64-bit versions of applications depends greatly upon their types, and the data types they are processing. But in general you may expect...
...
Apr 05 2013
What advantages do 64-bit processors have over 32-bit?
Andrey Karpov
There are 3 most obvious advantages of 64-bit processors over their 32-bit counterparts: extended address space, capacity increase, and larger number of general-purpose...
...
View more Pagination arrow previous
Showing: - of 1605