How to avoid buffer overflow?
Answer / nashiinformaticssolutions
Use bounds-checking functions like fgets() instead of unsafe functions like gets().
| Is This Answer Correct ? | 0 Yes | 0 No |
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
When is the “void” keyword used in a function?
What the advantages of using Unions?
How will you delete a node in DLL?
What are the 4 types of unions?
what is the use of c program?
4 Answers Synergy, Web Synergies,
Which is better between malloc and calloc?
Table of Sudoku n*n
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is int main () in c?
If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..
How to reverse a string using a recursive function, with swapping?