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 |
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
how to swap two nubers by using a function with pointers?
int x=5; printf("%d%d%d",x,x<<2,x>>2);
What are the restrictions of a modulus operator?
Difference between null pointer and dangling pointer?
what is compiler
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
Is stack a keyword in c?
Is c call by value?
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What is context in c?
How do I read the arrow keys? What about function keys?