Why is it that not all header files are declared in every C program?
No Answer is Posted For this Question
Be the First to Post Answer
What is preprocessor with example?
WHAT IS HEADER?
how to execute a program using if else condition and the output should enter number and the number is odd only...
difference between function & structure
c program to manipulate x=1+3+5+...+n using recursion
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 do you use a pointer to a function?
what do you mean by defining a variable in our c code?
Write the control statements in C language
What is the maximum length of an identifier?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
Do you know pointer in c?