Question: Rewrite the function shown in the following program written in C and modify it using two different approaches so that it is no longer vulnerable

Rewrite the function shown in the following program written in C and modify it using two different approaches so that it is no longer vulnerable to a stack buffer overflow void hello(char *tag) char inp[16] printf("Enter value for %s: ", tag); gets(inp); printf("Hello your %s is %sm", tag, inp); Rewrite the function shown in the following program written in C and modify it using two different approaches so that it is no longer vulnerable to a stack buffer overflow void hello(char *tag) char inp[16] printf("Enter value for %s: ", tag); gets(inp); printf("Hello your %s is %sm", tag, inp)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
