about c language
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..
how to use virual function in real time example
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
Difference between C and Embedded C?
What is data structure in c programming?
What are pointers in C? Give an example where to illustrate their significance.
wat are the two methods for swapping two numbers without using temp variable??
Is c call by value?
Which of these statements are false w.r.t File Functions? i)fputs() ii)fdopen() iii)fgetpos() iv)ferror() A)ii B)i,ii C)iii D)iv
What does the error 'Null Pointer Assignment' mean and what causes this error?
Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?
What is the difference between malloc() and calloc()?