What does 3 periods mean in texting?
No Answer is Posted For this Question
Be the First to Post Answer
Explain a file operation in C with an example.
What is the hardest programming language?
What is logical error?
What's the total generic pointer type?
User define function contain thier own address or not.
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.
What are the Advantages of using macro
How can I read a directory in a c program?
What are the disadvantages of external storage class?
Program to find the sum of digits of a given number until the sum becomes a single digit
what is meant by the "equivalence of pointers and arrays" in C?
a number is perfect if it is equal to the sum of its proper divisor.. 6 is perfect number coz its proper divisors are 1,2 and three.. and 1+2+3=6... a number is deficient if the sum of its proper divisor is less than the number.. sample: 8 is deficient, coz its proper divisors are 1,2 and 4, and 1+2+4=7. abundant number, if the sum of its proper divisor is greater than the number.. sample..12 is abundant coz 1+2+3+4+6=16 which is geater than 12. now write a program that prompts the user for a number, then determines whether the number is perfect,deficient and abundant..