#include
/*
A simple program to demonstrate integer overflow vulnerability
*/
int main()
{
int a;
printf("Please give an integer for multiplication sample: ");
scanf("%d", &a);
printf("result of multiplication a is %d", (a * a));
...
Saturday, April 30, 2011
GCC Command Line Option
GCC Command-Line Options
This part of the documentation is a modified version of the Command-Line Options section of the GCC Manual. Therefore it is licensed under the GNU Free Documentation License.
This section describes the options supported by gcc, the driver program of the GNU Compiler Collection, whose C compiler and assembler are used here....