Write a C program in Fibonacci series.
No Answer is Posted For this Question
Be the First to Post Answer
Write a C/C++ program that connects to a MySQL server and checks intrusion attempts every 5 minutes. If an intrusion attempt is detected beep the internal speaker to alert the administrator. A high number of aborted connects to MySQL at a point in time may be used as a basis of an intrusion.
2 Answers Drona Solutions, Infosys, Vodafone, Webyog,
What is the difference function call by value & function call by reference?
Write a programm such that if user enter 11.25 it roundup to 11 but if user enter 11.51 upto 11.99 it will round up to 12 i.e.;convert the floting point value into integer format as explain above..
Explain the concept of "dangling pointers" in C.
What is strcmp in c?
What does the && operator do in a program code?
The statement, int(*x[]) () what does in indicate?
What is Lazy evaluation in C? Give an example.
Why does everyone say not to use gets?
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
What should malloc(0) do?
True or false: If you continuously increment a variable, it will become negative? 1) True 2) False 3) It depends on the variable type