Our website uses cookies to enhance your browsing experience.
Accept
to the top
close form

Fill out the form in 2 simple steps below:

Your contact information:

Step 1
Congratulations! This is your promo code!

Desired license type:

Step 2
Team license
Enterprise license
** By clicking this button you agree to our Privacy Policy statement
close form
Request our prices
New License
License Renewal
--Select currency--
USD
EUR
* By clicking this button you agree to our Privacy Policy statement

close form
Free PVS‑Studio license for Microsoft MVP specialists
* By clicking this button you agree to our Privacy Policy statement

close form
To get the licence for your open-source project, please fill out this form
* By clicking this button you agree to our Privacy Policy statement

close form
I am interested to try it on the platforms:
* By clicking this button you agree to our Privacy Policy statement

close form
check circle
Message submitted.

Your message has been sent. We will email you at


If you do not see the email in your inbox, please check if it is filtered to one of the following folders:

  • Promotion
  • Updates
  • Spam

Webinar: Evaluation - 05.12

>
Posts

Posts

Apr 09 2013
The difference between static analysis and code review
Andrey Karpov
Both static analysis and code review are methods to find errors and vulnerabilities in source code without explicitly executing the program being...
...
Apr 05 2013
What does the pointer size depend on in C++ on different platforms?
Andrey Karpov
According to the C++ standard, the pointer size depends on the particular compiler implementation and does not relate directly to the platform capacity. In its turn, within the framework of...
...
Subscribe to the newsletter
Want to receive a monthly digest of the most interesting articles and news? Subscribe!
* By clicking this button you agree to our Privacy Policy statement
Apr 05 2013
Using _WIN64/WIN64 macros
Andrey Karpov
The _WIN64 macro will be always predefined by the compiler itself while building for any 64-bit Windows family OS, so this macro should not ever be defined manually. It's worth noting that _WIN64...
...
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...
...
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...
...
View more Pagination arrow previous
Showing: - of 1478