What’s a signal? Explain what do I use signals for?
No Answer is Posted For this Question
Be the First to Post Answer
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..
Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer
How to implement variable argument functions ?
What are the back slash character constants or escape sequence charactersavailable in c?
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
What are the types of functions in c?
Are the variables argc and argv are always local to main?
Explain what is meant by high-order and low-order bytes?
What is the use of function in c?
What is data type long in c?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What is c method?