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 |
write function to reverse char array ... without using second array
Program to find the absolute value of given integer using Conditional Operators
Explain about the functions strcat() and strcmp()?
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
What is the use of pointers in C?
0 Answers Impetus, Motorola, Tavant Technologies, Virtusa,
Write a C program to read the internal test marks of 25 students in a class and show the number of students who have scored more than 50% in the test. Make necessary assumptions.
What is the explanation for modular programming?
What are dangling pointers? How are dangling pointers different from memory leaks?
Write a program to print the following series 2 5 11 17 23 31 41 47 59 ...
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }
what is inline function?
Is file a keyword in c?