Question: Do not use fgets function Rewrite the function shown in the following program written in C and modify it without using fgets function so

"Do not use fgets function "

Rewrite the function shown in the following program written in C and modify it without using fgets function 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("Enter value for %s is %s ",tag,inp); }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!