Identifying security vulnerabilities and coding mistakes (Code Review) using Splint
Splint is a tool for statically checking C programs for security vulnerabilities and coding mistakes. With minimal … Read more
Splint is a tool for statically checking C programs for security vulnerabilities and coding mistakes. With minimal … Read more
Valgrind is an instrumentation framework for building dynamic analysis tools. There are Valgrind tools that can automatically … Read more
When some expression in C contains two operators with same/equal priority, the expression gets executed as per … Read more
Following the simple example which shows how we can send and receive an integer over a socket. … Read more
Lets say we want to read the contents of some file and want to operate on these … Read more
When you are writing C program, sometimes you need to make certain checks on variables and based … Read more
If you are using NDK version more than r19, the toolchains which comes as part of NDK … Read more
What is Clang ? Clang is a compiler front end for the C, C++, Objective-C and Objective-C++ … Read more
Following is the simple example to show, how we can create two threads at a time and … Read more
Following is the simple example to show, how we can create two threads at a time and … Read more